将查询网址重定向到新网页

时间:2013-11-04 03:36:43

标签: .htaccess redirect

我有这个网址

www.example.com/nothing_here?registration=disabled

我想将其重定向到

www.example.com/errors/418.php

我无法摆脱url的nothing_here部分。怎么做?

由于

1 个答案:

答案 0 :(得分:1)

文档根目录的htaccess文件中,添加:

RedirectMatch 301 ^/nothing_here$ /errors/418.php?

或使用mod_rewrite:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^registration=disabled$ [NC]
RewriteRule ^nothing_here$ /errors/418.php [L,R=301]