Htaccess重定向joomla中的问题

时间:2016-05-26 14:14:28

标签: .htaccess

请帮我解决重定向问题。

我正在尝试从http://www.project/index.php/blog重定向到http://www.project/blog

我尝试了以下但是没有用

RewriteRule ^(blog)$ ./index.php/ [L]         

2 个答案:

答案 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]