2013-11-04 77 views
0
新的一頁

我有這個網址重定向查詢網址到

www.example.com/nothing_here?registration=disabled 

,我想它重定向到

www.example.com/errors/418.php 

我無法擺脫的URL nothing_here部分。這個怎麼做?

感謝

回答

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] 
+0

第一個我不能使用,因爲我不t想要重定向所有nothing_here頁面。第二個我放在我的根htaccess的頂部,但URL不會被重寫。任何想法爲什麼?謝謝 – WendiT

+0

對不起,我的壞。它完美的工作!謝謝 – WendiT