301重定向

301重定向代码能放到哪些地方

小新
168
2020-12-23 18:18:02
栏目: 编程语言

301重定向代码能放到哪些地方

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();






0
看了该问题的人还看了