将选择页面重定向到https

时间:2013-04-17 22:31:34

标签: .htaccess mod-rewrite ssl

我有一个非常简单的问题,由于某些原因我无法弄清楚,而且搜索时间也没有帮助。使用.htaccess文件,如何将/login.php/index.php重定向到https,然后将任何其他页面重定向到http?我目前使用此代码重定向到https,但它会重定向每个页面:

RewriteCond %{SERVER_PORT} !443
RewriteRule ^(.*) https://www.ruxim.com/$1 [R]  
非常感谢你。

3 个答案:

答案 0 :(得分:2)

%{SERVER_PORT}变量取决于配置中的UseCanonicalPhysicalPort。如果没有设置,那么您可能无法与该变量匹配,而是更容易使用%{HTTPS}

RewriteCond %{HTTPS} off
RewriteRule ^/?(login|index)\.php https://www.ruxim.com%{REQUEST_URI} [L,R]

RewriteCond %{HTTPS} on
RewriteRule !^/?(login|index)\.php http://www.ruxim.com%{REQUEST_URI} [L,R]

如果您不需要重定向到非https,那么您不需要第二条规则。

答案 1 :(得分:0)

尝试这样的事情;

RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{REQUEST_FILENAME} =index.php [OR]
RewriteCond %{REQUEST_FILENAME} =login.php
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]

我注意到100%确定[OR]是否会在中间突然出现。

答案 2 :(得分:0)

请应用以下条件以仅保护/login.php和/index.php页面。其他页面将在HTTP路径上工作(非安全页面)。

RewriteEngine On
RewriteBase /
# force https for /login.php and /index.php
RewriteCond %{HTTPS} =off
RewriteRule ^(index|login)\.php$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

# don't do anything for images/css/js (leave protocol as is)
RewriteRule \.(gif|jpe?g|png|css|js)$ - [NC,L]

# force http for all other URLs
RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} !^/(index|login)\.php$
RewriteRule .* http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]