我使用ubuntu,apache和letsencrypt。我想禁用一个目录的https。
这是我的. htaccess现在:
RewriteEngine On
RewriteBase /
#HTTP TO HTTPS
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
domain.nl should redirect to https://domain.nl . (As it does now) http://domain.nl/keuken (or http://domain.nl/keuken/keuken.php is also ok) should just be http.
我不能让它工作。
我尝试了stackoverflow的几个解决方案,但要么它什么也不做,要么我得到了许多重定向。
1条答案
按热度按时间00jrzges1#
我找到了答案,问题中的.htaccess与此无关,我修改了virtualhost配置文件:000-/etc/apache 2/sites中的默认.conf-可用于:
如果我是正确的,这意味着除了/keuken之外的所有内容都被重定向到https。