Mod_rewrite规则删除index.php

时间:2012-02-07 12:19:31

标签: apache .htaccess mod-rewrite

我需要

site.com/index.php?s=super-smash-bros-baww-SUzohN

重定向到

site.com/super-smash-bros-baww-SUzohN

我该怎么做?

请注意,字数可能不同,例如:/index.php?s=aaa-bbb-ccc需要转到/aaa-bbb-ccc

由于

1 个答案:

答案 0 :(得分:1)

尝试将以下内容添加到站点根目录中的.htaccess文件中。

RewriteEngine on
RewriteBase / 

#redirect to remove index.php
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\?s=([^\ &]+) [NC]  
RewriteRule ^ %1? [L,R=301] 

#process the SEF Url with index.php
RewriteRule ^([-a-zA-Z]+)$ index.php?s=$1 [L]