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

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

赞(0)
未经允许不得转载:主机测评网 » 301重定向代码能放到哪些地方
分享到: 更多 (0)