我需要
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
由于
答案 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]