如何解决如何使用 url 名称更改将页面从 http 重定向到 htpps
我有以下问题
我需要两件事:
我知道我可以使用的第一个:
https://example.com/work-for-us
第二个使用
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
但是有可能将这两者连接在一起吗?
所以我有 HTTP -> HTTPS 和 /index.html -> /work-for-us
我对 .htaccess 文件没有太多了解,我在互联网上阅读了一些内容,但没有找到任何可以回答我的问题的内容。
所以把所有的东西放在一起,我想改变这个网址:
RewriteEngine on
RewriteRule work-for-us index.html
到此 http://example.com/index.html
提前致谢。
解决方法
根据您显示的示例,您能否尝试以下操作。 在测试您的网址之前,请务必清除浏览器缓存。
RewriteEngine on
##First rule for applying https to URLs.
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
##Second rule for serving homepage(only dns link) with index.html file.
RewriteRule ^/?$ work-for-us [R=301]
RewriteRule ^/?$ index.html [L]
##Third rule for serving non-existing directories/files with index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.html [L]
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。