Commit eb55a9cf authored by Owain Jones's avatar Owain Jones
Browse files

redirect /dashboard.php to /dashboard

parent aa09aee1
...@@ -45,6 +45,10 @@ server { ...@@ -45,6 +45,10 @@ server {
try_files $uri @rewriteapp; try_files $uri @rewriteapp;
} }
location /dashboard.php {
return 301 /dashboard;
}
location /mission.php { location /mission.php {
return 301 /missions; return 301 /missions;
} }
......
...@@ -49,6 +49,10 @@ server { ...@@ -49,6 +49,10 @@ server {
try_files $uri @rewriteapp; try_files $uri @rewriteapp;
} }
location /dashboard.php {
return 301 /dashboard;
}
location /mission.php { location /mission.php {
return 301 /missions; return 301 /missions;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment