时间:2021-07-01 10:21:17 帮助过:9人阅读
SEO Egghead: SEO for Nerds Welcome to SEO Egghead!
function fix_index_url()
{
if(preg_match('#(.*)index\.(php|html)$#', $_SERVER['REQUEST_URI'], $captures))
{
//perform a 301 redirect to the new URL
header('HTTP/1.1 301 Moved Permanently');
header('Location:' . "http://localhost/seophp");
}
// exit();
}