ECshop設置301最快捷最簡單的方法php
在 init.php中加入如下代碼web
if (strtolower($_SERVER['SERVER_NAME'])!='www.fz1688.com') { $URIRedirect=$_SERVER['REQUEST_URI']; if(strtolower($URIRedirect)=="/index.php") { $URIRedirect="/"; } header('HTTP/1.1 301 Moved Permanently'); header('Location:http://www.fz1688.com'.$URIRedirect); exit(); }