文章摘要:301重定向代码能放到哪些地方 301重定向怎么设置
301重定向代码能放到.htaccess文件、html网页文件和php文件中,例如: .htaccess文件中 […]
301重定向代码能放到.htaccess文件、html网页文件和php文件中,例如:
.htaccess文件中的301重定向代码:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yisu.com$ [NC]
RewriteRule ^(.*)$ http://www.yisu.com/$1 [R=301,L]
html网页文件中的301重定向代码:
php文件中的301重定向代码:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://123.net/hello.html");
exit();