我需要使用htaccess从
重定向网址http://www.example.com/showthread.php?t=1 到http://www.example.com/threads/1/
来自http://www.example.com/showthread.php?t=1&page=2 到http://www.example.com/threads/1/page-2
答案 0 :(得分:0)
您可以使用以下规则:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/showthread\.php$ [NC]
RewriteCond %{QUERY_STRING} ^t=([0-9]+)$ [NC]
RewriteRule ^(.*)$ /thread/%1/ [R=301,L,QSD]
RewriteCond %{REQUEST_URI} ^/showthread\.php$ [NC]
RewriteCond %{QUERY_STRING} ^t=([0-9]+)&page=([0-9]+)$ [NC]
RewriteRule ^(.*)$ /thread/%1/page-%2 [R=301,L,QSD]