Htaccess Redirect issues in joomla

2019-09-18 12:22发布

Please help me with a redirect issue.

I am trying to redirect from http://www.project/index.php/blog to http://www.project/blog.

I tried the following but it did not work

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

标签: .htaccess
2条回答
We Are One
2楼-- · 2019-09-18 12:49

Give this a try:

Options +FollowSymlinks
RewriteEngine on
Rewriterule ^index.php/blog(.*)$ http://www.project/blog$1 [r=301,nc]
查看更多
劫难
3楼-- · 2019-09-18 13:03

If you want to append the requested path info at index.php, you might use this RewriteRule

RewriteCond %{REQUEST_URI} !^/index\.php
RewriteRule ^ /index.php%{REQUEST_URI} [L]
查看更多
登录 后发表回答