在.htaccess中,如何重定向所有网址
site.com/?author=X
(其中X是任意数字)
到
site.com/theonlyauthor
(我看过许多关于使用问号或通配符重定向的帖子,但不是两者都有。)
答案 0 :(得分:2)
在
的根文件夹中http://example.com/
上传.htaccess
文件,其中包含以下内容:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^author=
RewriteRule ^$ http://%{HTTP_HOST}/theonlyauthor? [NC,L]