本月博客排行
-
第1名
wy_19921005 -
第2名
benladeng5225 -
第3名
duanfei - wddpwzzhao123
- steven789654
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - benladeng5225
- kaizi1992
- tanling8334
- vipbooks
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- e_e
- jh108020
- ganxueyun
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- lemonhandsome
- chenqisdfx
- xiaoxinye
- lyndon.lin
- flashsing123
- bosschen
- zhangjijun
- sunnylocus
- 青否云后端云
- lyj86
- paulwong
- sgqt
- hudiemeng870329
- mft8899
最新文章列表
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 ...