htaccess重定向index.php?/ *到?/ *

时间:2014-04-25 10:27:52

标签: .htaccess redirect

基本上我需要完成标题所说的内容。 我有一个使用以下url结构的客户端站点:

http://www.example.co.uk/index.php?/<folder>/<file>

http://www.example.co.uk/?/<folder>/<file>

我需要将index.php?/重定向到?/

为你的帮助干杯!

1 个答案:

答案 0 :(得分:1)

这应该适合你:

RewriteEngine On 
RewriteCond %{THE_REQUEST} ^(GET|POST)\ /index\.php\?/(.*)\ HTTP 
RewriteRule ^ /?/%2 [R=301,L] 

应将index.php?/folder/file更改为?/folder/file