我需要将Apache 2.4中的所有流量从HTTP重定向到HTTPS,除了“/ bt / sub / [a_few_endings]”,使用来自mod_alias的重定向(不能使用mod_rewrite).
我在我认识的所有在线测试人员(例如http://regex101.com/)中测试了以下正则表达式,并且都确认正则表达式确实应该匹配除了我不希望它匹配的URL之外的所有内容:
^/(?!bt/sub/(went_active|success|cancel|expired)).*$
据我所知,这应该匹配http://local.mysite.com中的所有内容并将其重定向到https://local.mysite.com,除了以下四个:
> http://local.mysite.com/bt/sub/went_active
> http://local.mysite.com/bt/sub/success
> http://local.mysite.com/bt/sub/cancel
> http://local.mysite.com/bt/sub/expired
仍然,Apache重定向所有内容,包括我不想重定向的上述URL.
我在SO中发现了几个类似的问题,但大多数都是根据mod_rewrite回答的,这不是我想要/需要的,人们说有用的那些对我没用.
这是我目前的虚拟主机配置:
<VirtualHost *:80> ServerName local.mysite.com RedirectMatch 302 ^/(?!bt/sub/(went_active|success|cancel|expired)).*$https://local.mysite.com DocumentRoot /home/borfast/projects/www/mysite/public #Header set Access-Control-Allow-Origin * SetEnv LARAVEL_ENV localdev <Directory /home/borfast/projects/www/mysite/public/> Options All DirectoryIndex index.PHP AllowOverride All Require all granted </Directory> </VirtualHost>
请帮助,防止我发疯:)
更新:
有一些奇怪的事情发生了:显然当找到请求的URL /路径时,Apache会忽略RedirectMatch中的表达式并重定向客户端,即使RedirectMatch告诉它不要.
为了测试这个,我在一个单独的VM中创建了一个新的虚拟主机,这个虚拟机刚安装了Ubuntu Trussty 64,并装载了Apache 2.4.这个新的虚拟主机只包含ServerName,RedirectMatch和DocumentRoot指令,如下所示:
<VirtualHost *:80> ServerName testing.com RedirectMatch 302 ^/(?!bt/sub/(went_active|success)$).*$https://othersite.com/ DocumentRoot /home/vagrant/www </VirtualHost>
我创建了目录/ home / vagrant / www / bt / sub / went_active以确保Apache可以访问两个可能的URL中的至少一个.当试图访问http://testing.com:8080时,我按预期重定向.
然后奇怪的是:当访问http://testing.com:8080/bt/sub/went_active,与我创建的目录匹配的URL时,我仍然被重定向,即使我不应该,但是在访问http时: //testing.com:8080/bt/sub/success,我没有被重定向,而是获得403 Forbidden.
我可能会对此失去理智,但似乎当Apache发现它可以提供请求并且它与RedirectMatch中的正则表达式匹配时应该阻止重定向时,它决定忽略正则表达式并进行重定向.三封信:WTF?!?!?!
RewriteEngine On RewriteCond %{REQUEST_URI} !^/bar/(abcd|baz|barista|yo)$[NC] RewriteRule ^ http://site/ [R=301,L]
另一个(对于.htaccess,作为初始/从RewriteRule中删除)
RewriteEngine On RewriteRule !^bar/(abcd|baz|barista|yo)$http://site/ [R=301,L,NC]
和RedirectMatch的解决方案
RedirectMatch permanent ^(?!/bar/(abcd|baz|barista|yo)$).* http://site/
一切都很完美,你在测试/调试状态下可能遇到的问题是浏览器缓存301响应.因此,当您尝试检查或编写正确的代码时 – 使用302响应,而不是301.如果不需要不区分大小写,则删除NC标志.