我有例如index.php中的网站example.com我正在重定向网站
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 :(得分:0)
可能有一些脚本正在影响使用如下所示的元标记:
echo '<meta http-equiv="refresh" content="0; ,URL=http://www.example.com/ru">';