Report this

What is the reason for this report?

Nginx + Wordpress: How do I ignore an /admin/ directory?

Posted on October 3, 2016

I have a standard Wordpress install on an Ubuntu 16.04 server using nginx.

Part of the DO tutorial for the Wordpress setup is to include this line:

try_files $uri $uri/ /index.php$is_args$args;

I need all requests to /admin/(.+) to avoid running through Wordpress’ index.php because the files here have nothing to do with Wordpress.

I’ve tried a standalone location /admin {…} block, if statements within location / {…} and nothing seems to work; /admin continually gets matched by the above try_files block/

Any insight as to how I need to set this up to exclude /admin and all subdirectories/files from being run through Wordpress?

Thank you!



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

To follow up here. The try_files directive used in this way should only redirect things through index.php when the requested file does not exist.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.