向各位求助,伪静态去掉index.php的问题
如:将www.abc.com/index.php/list-3-3 通过伪静态改成了www.abc.com/list-3-3
但是改完以后再访问www.abc.com/index.php/list-3-3网址时却回到主页了,
请问各位有什么跳转到新地址 www.abc.com/list-3-3的方法,谢谢
iis环境下的httpd.ini文件:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteBase /
RewriteRule ^(js/.*\.html$) $1 [L]
RewriteRule ^(.*).html$ /index.php/$1 [L]