webinoly/templates/nginx/common/wpsubdir.conf
Cristhian Martínez Ochoa 13d9025391 Initial release
First commit to public release.
2017-09-16 14:37:13 -06:00

11 lines
351 B
Plaintext

# WPSUBDIRECTORY NGINX CONFIGURATION
# DO NOT MODIFY, ALL CHANGES LOST AFTER UPDATE Webinoly
if (!-e $request_filename) {
# Redirect wp-admin to wp-admin/
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
# Redirect wp-* files/folders
rewrite ^(/[^/]+)?(/wp-.*) $2 last;
# Redirect other php files
rewrite ^(/[^/]+)?(/.*\.php) $2 last;
}