apache 301重定向怎么做

apache 301重定向怎么做,第1张

Apache 开启.htaccess 

httpd.conf

Options FollowSymLinks

AllowOverride All 

LoadModule rewrite_module modules/mod_rewrit

RewriteEngine on RewriteCond %{HTTP_HOST} ^zerobin.org$ RewriteRule ^/?$ "http\:\/\/www\.zerobin\.org\/"

Apache自动跳转到 HTTPS:网页链接

根据以上文档创建伪静态文件: .htaccess(放入网站根目录)

文件内容:

<IfModule mod_rewrite.c>

RewriteEngine on

RewriteBase /

RewriteCond %{SERVER_PORT} !^443$

RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=301,L]

</IfModule>

要看你用的什么后台共有三种

1、在apache的配置文件httpd.conf改

2、或在.htaccess里改

3、部分后台直接支持后台操作的,可以在后台改


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/66793.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-01
下一篇2023-03-01

发表评论

登录后才能评论

评论列表(0条)

    保存