gpt4 book ai didi

php - 为几个页面设置 SSL

转载 作者:太空宇宙 更新时间:2023-11-03 14:57:33 25 4
gpt4 key购买 nike

目前,我网站上的所有内容都重定向到 https。这很棒。我很乐意使用 ssl。但是现在,并不是所有的东西都在使用 SSL,所以我想慢慢地把所有的东西都转移过来。所以我想要几个页面(register.html、register.php、textlimit.html、textlimit.php)。这将不胜感激。

我的 .htaccess 目前是

SetEnv TZ America/Los_Angeles

# Prevent viewing of htaccess file.
<Files .htaccess>
order allow,deny
deny from all
</Files>

# Prevent directory listings
Options All -Indexes

# Compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript


RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

最佳答案

您可以在 RewriteCond %{HTTPS} 关闭 下方添加:

RewriteCond %{REQUEST_URI} ^/(?:register\.html|register\.php|textlimit\.html|textlimit\.php)$

如果您想稍后添加更多内容,也可以使用更简单的格式:

RewriteCond %{REQUEST_URI} ^/(?:register\.html|register\.php)$ [OR]
RewriteCond %{REQUEST_URI} ^/(?:textlimit\.html|textlimit\.php)$ [OR]
RewriteCond %{REQUEST_URI} ^/other\.html$ [OR]
RewriteCond %{REQUEST_URI} ^/other2\.html$

关于php - 为几个页面设置 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27419566/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com