Skip to content
Snippets Groups Projects

archwiki: Make the /index.php/ -> /title/ redirect permanent (301)

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -54,7 +54,7 @@ server {
# Redirect old URLs to the new short-url (/title/<page>)
location ~ ^/index.php/(.*)$ {
return 307 /title/$1;
return 301 /title/$1;
}
# Handling for the article path (pretty URLs)
Loading