重定向到.htaccess中的https文件夹

时间:2014-02-17 06:56:51

标签: .htaccess mod-rewrite redirect ssl https

我试图让我的网站的整个目录/部分使用.htaccess文件自动重定向到https(安全),所以我在这里找到了解决方案。事实证明,除主页外,它会将我的整个网站重定向到HTTPS。我希望只重新导入/ php /文件夹及其中的任何内容。

提前感谢您的帮助!

这是我在.htaccess中的代码:

RewriteCond %{SERVER_PORT} 80 
RewriteCond %{REQUEST_URI} php 
RewriteRule ^(.*)$ https://beanstalkwebsolutions.com/$1 [R,L]

1 个答案:

答案 0 :(得分:1)

您可以将此规则用作第一条规则:

RewriteCond %{HTTPS} off
RewriteRule ^php(/|$) https://beanstalkwebsolutions.com%{REQUEST_URI} [NC,R,L]