扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

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

扬州沐宇科技
2020-12-23 18:18:02
301重定向

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






扫码添加客服微信