我有一个joomla网站,我打开了sef-urls。现在新的URL和index.php的URL工作正常: https://www.myurl.ch/index.php/team https://www.myurl.ch/team
我想将所有index.php网址重定向到非index.php版本,因此/index.php/team应该重定向到/ team。
如何在我的.htaccess文件中设置它?
答案 0 :(得分:1)
您可以使用以下规则:
RewriteEngine on
RewriteCond %{THE_REQUEST} /index\.php/(.+)\sHTTP [NC]
RewriteRule ^ /%1 [NE,L,R=301]
这会将 /index.php/foobar 重定向到 / foobar 。