fixes
parent
14b18150a2
commit
2f79e5ca9a
|
@ -15,30 +15,10 @@ server {
|
||||||
index index.html index.htm index.php;
|
index index.html index.htm index.php;
|
||||||
|
|
||||||
charset utf-8;
|
charset utf-8;
|
||||||
|
|
||||||
# Remove index.php$
|
|
||||||
if ($request_uri ~* "^(.*/)index\.php$") {
|
|
||||||
return 301 $1;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.php?$query_string;
|
try_files $uri $uri/ /index.php?$query_string;
|
||||||
|
|
||||||
# Remove from everywhere index.php
|
|
||||||
if ($request_uri ~* "^(.*/)index\.php(/?)(.*)") {
|
|
||||||
return 301 $1$3;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
# Remove trailing slash.
|
|
||||||
if (!-d $request_filename) {
|
|
||||||
rewrite ^/(.+)/$ /$1 permanent;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Clean Double Slashes
|
|
||||||
if ($request_uri ~* "\/\/") {
|
|
||||||
rewrite ^/(.*) /$1 permanent;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
error_page 404 /index.php;
|
error_page 404 /index.php;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue