Skip to content
Snippets Groups Projects
Verified Commit 03eabb9a authored by David Beniamine's avatar David Beniamine
Browse files

Fix sympa API not reachable

parent 79896b69
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
RewriteEngine on RewriteEngine on
# Do not redirect static, css and pictures # Do not redirect static, css and pictures
RewriteCond %{REQUEST_URI} !^/(static|css|pictures)-sympa/.* RewriteCond %{REQUEST_URI} !^/(static|css|pictures)-sympa/.*
RewriteCond %{REQUEST_URI} !^/sympasoap.*
# Avoid redirect loops # Avoid redirect loops
RewriteCond %{REQUEST_URI} !^/wws.* RewriteCond %{REQUEST_URI} !^/wws.*
# Prepend wws # Prepend wws
...@@ -37,6 +38,8 @@ ...@@ -37,6 +38,8 @@
# Hide direct access to /wws with 307 to preserve data and method # Hide direct access to /wws with 307 to preserve data and method
RewriteCond %{REQUEST_URI} ^/wws.* RewriteCond %{REQUEST_URI} ^/wws.*
RewriteCond %{REQUEST_URI} !^/(static|css|pictures)-sympa/.*
RewriteCond %{REQUEST_URI} !^/sympasoap.*
RewriteRule /wws(.*) $1 [L,QSA,R=307] RewriteRule /wws(.*) $1 [L,QSA,R=307]
# For debug purposes, uncomment this line # For debug purposes, uncomment this line
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment