使用问号和通配符

时间:2016-01-02 15:37:28

标签: .htaccess mod-rewrite redirect

在.htaccess中,如何重定向所有网址

site.com/?author=X

(其中X是任意数字)

site.com/theonlyauthor

(我看过许多关于使用问号或通配符重定向的帖子,但不是两者都有。)

1 个答案:

答案 0 :(得分:2)

的根文件夹中
http://example.com/

上传.htaccess文件,其中包含以下内容:

RewriteEngine On

RewriteCond %{QUERY_STRING} ^author=
RewriteRule ^$ http://%{HTTP_HOST}/theonlyauthor? [NC,L]