请帮我解决重定向问题。
我正在尝试从http://www.project/index.php/blog重定向到http://www.project/blog。
我尝试了以下但是没有用
RewriteRule ^(blog)$ ./index.php/ [L]
答案 0 :(得分:0)
尝试一下:
Options +FollowSymlinks
RewriteEngine on
Rewriterule ^index.php/blog(.*)$ http://www.project/blog$1 [r=301,nc]
答案 1 :(得分:0)
如果您想在index.php
附加请求的路径信息,可以使用此RewriteRule
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteRule ^ /index.php%{REQUEST_URI} [L]