温馨提示×

linux如何设置301重定向

小新
180
2021-01-06 19:47:57
栏目: 智能运维

linux如何设置301重定向

linux设置301重定向的方法:

设置.htaccess文件,在.htaccess文件里写上以下代码即可。

RewriteEngine on

RewriteCond %{http_host} ^123.com [NC]

RewriteRule ^(.*)$ http://www.123.com/$1 [L,R=301]

0