301重定向代码能放到哪些地方 301重定向怎么设置

主机教程 建站分享 2年前 (2022-09-15) 322次浏览

文章摘要: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();


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:301重定向代码能放到哪些地方 301重定向怎么设置
文章链接:http://www.7966.org/post/16666.html
转载请注明出处

喜欢 (0)