2013-05-21 61 views
0

我有示例站點example.com的index.php中我重定向網站網站報道爲惡意重定向因爲

if ($_SERVER['HTTP_HOST'] == 'www.example.com') 
header('Location: http://www.example.com/ru/'); 

殺毒軟件檢測到這種重定向惡意軟件,如何更改代碼,病毒檢測不到的惡意軟件在我的重定向?

也許是使用.htacces重寫好辦法:

RewriteEngine on 
RewriteBase/

RewriteCond %{HTTP_HOST} ^www\.example\.com$ 
RewriteRule ^$ maindomain.com/ru [L] 

回答

0

可能有一些腳本,這是影響只是使用元標籤象下面這樣:

echo '<meta http-equiv="refresh" content="0; ,URL=http://www.example.com/ru">';