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

1950
2020/12/23 18:18:02
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

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






辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: index.php怎么301重定向到首页