本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- johnsmith9th
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
- jveqi
- java-007
- sunj
最新文章列表
PHP:Invalid command RewriteEngine解决办法
今天使用 CodeIgniter的时候出现了HTTP 500错误,查看日志发现以下错误
CodeIgniter_2.0.2/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
解决办法:
...
RewriteEngine RewriteCond |域名后面多了两个斜杠??
一直把RewriteEngine ,RewriteCond 规则写在httpd.conf文件中,直接写在文件尾部,怎么都不能重定向。(mod_rewrite.so)模块也存在,折腾了N久,今天终于豁然开朗,配置成功。
仔细研读了相关文章,搞明白 RewriteCond 的生效域: server config, virtual host, directory, .htaccess。 ...
mod_rewrite失效的原因
1. httpd.conf中mod_rewrite没有加载,查看下列行是否被注释掉或者没有加上
LoadModule rewrite_module /opt/taobao/install/httpd/modules/mod_rewrite.so
2. httpd.conf中RewriteEngine是否开启
RewriteEngine on
rewrit ...