php-htaccess在父目录中为https,但在子目录中为http

我已经尝试过为该问题实施一些建议的解决方案,但是却无济于事.

我正在使用2个.htaccess文件,其中一个在我的根目录中,其内容如下:

RewriteEngine on
RewriteBase /
RewriteRule ^(webservice|api) - [L]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://www.domain.com%{REQUEST_URI}  [R=301,L]

这会将所有流量通过我需要的https重定向到主要网站.

但是,在子目录中,我想禁用重新路由并强制通过http进入该目录的所有请求. / webservice / rest /中的.htaccess文件显示为:

RewriteEngine On
RewriteBase /webservice/rest/
RewriteCond %{HTTPS} on
RewriteRule (.*) http://www.domain.com/webservice/rest/%{REQUEST_URI}  [R=301,L]
RewriteRule ^testingPost/?$testingPost.php [NC]
RewriteRule ^([a-zA-Z0-9\_\-]+)/?(\?([a-zA-Z0-9\_\-\=\?\&]))?$otherfiledirect.php?method=$1&params=$2 [NC]

发生了一些重定向,但是第二个htaccess中的第3和第4行似乎没有做任何事情-任何人都可以看到我在做错什么以及如何在主站点上保留https但可以在任何站点上强制使用http / webservice / rest /以下的网址?

干杯

解决方法:

问题出在服务器中的ssl配置文件中.需要在端口443的安全虚拟主机下将“允许覆盖”设置为“全部”.更改后,根htaccess文件中的以下代码使我可以在整个网站上强制使用https(特定文件夹除外):

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !/webservice     [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}  [R=301,L]

因此,对http的任何请求都将转到https.但是,我仍然需要在我指定的文件夹上将请求显式更改为https以重定向到http,因此在上述代码之后添加了以下代码:

RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} /webservice      [NC]
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

子弹证明.

上一篇:php-如何使用.htaccess重定向除一个请求以外的所有请求?


下一篇:使用htaccess文件的多种语言的友好php URL(从URL中检测语言)