You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Enforce clean URLs
# Removes index.php from urls like www.example.com/index.php/my-page --> www.example.com/my-page
# Could be done with 301 for permanent or other redirect codes.
if ($request_uri ~* "^(.*/)index\.php/(.*)") {
return 307 $1$2;
}
(remember/facets don't use clean urls so we need to really test)
The text was updated successfully, but these errors were encountered:
What?
enforce clean URLs.
Test and add AFTER
archipelago-deployment-live/config_storage/nginxconfig/conf.d/nginx.conf
Lines 120 to 122 in 7a1d1d2
(remember/facets don't use clean urls so we need to really test)
The text was updated successfully, but these errors were encountered: