我有这个网址
www.example.com/nothing_here?registration=disabled
我想将其重定向到
www.example.com/errors/418.php
我无法摆脱url的nothing_here部分。怎么做?
由于
答案 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]