mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-29 17:39:03 +03:00
Optimise RewriteRules/Conds
From upstream changes on Mezzio Skeleton. Closes #1369.
This commit is contained in:
parent
af1ae0399c
commit
a89f67348d
1 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ RewriteEngine On
|
||||||
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||||||
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
||||||
RewriteCond %{REQUEST_FILENAME} -d
|
RewriteCond %{REQUEST_FILENAME} -d
|
||||||
RewriteRule ^.*$ - [NC,L]
|
RewriteRule ^ - [NC,L]
|
||||||
|
|
||||||
# The following rewrites all other queries to index.php. The
|
# The following rewrites all other queries to index.php. The
|
||||||
# condition ensures that if you are using Apache aliases to do
|
# condition ensures that if you are using Apache aliases to do
|
||||||
|
@ -12,6 +12,6 @@ RewriteRule ^.*$ - [NC,L]
|
||||||
# allow proper resolution of the index.php file; it will work
|
# allow proper resolution of the index.php file; it will work
|
||||||
# in non-aliased environments as well, providing a safe, one-size
|
# in non-aliased environments as well, providing a safe, one-size
|
||||||
# fits all solution.
|
# fits all solution.
|
||||||
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
|
RewriteCond $0::%{REQUEST_URI} ^([^:]*+(?::[^:]*+)*?)::(/.+?)\1$
|
||||||
RewriteRule ^(.*) - [E=BASE:%1]
|
RewriteRule .+ - [E=BASE:%2]
|
||||||
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
|
RewriteRule .* %{ENV:BASE}index.php [NC,L]
|
||||||
|
|
Loading…
Reference in a new issue