Correcting wp-admin 404 error for wordpress under IIS

more-errors
POST
mmombrea-headshot
By Matt Mombrea
Share

If you're running WordPress on IIS and experiencing an issue where navigating to /wp-admin results in either a blank page or a 404 error, you may need an additional rule in your .htaccess file. Generally you'll find that, assuming you're set up properly, you can reach the admin section by appending /index.php to the URL, but who wants to do that every time?

If you're not already up and running with Rewrites on your Windows Server, check this post on Setting up URL Rewrites for WordPress under IIS on a Windows Server.

The rule necessary tells the standard permalink rules to ignore the wp-admin directory when performing rewrites. Simply add the following condition to your .htaccess file:

RewriteCond %{REQUEST_URI} !^/(wp-admin|wp-admin/.*)$

The full, standard .htaccess file will now look something similar to this:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]

RewriteCond %{REQUEST_URI} !^/(wp-admin|wp-admin/.*)$

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

</IfModule>
# END WordPress

This rule also comes in handy if you want to host some content or additional apps under the same domain that you have WordPress running on. Normally WordPress will highjack the request and you won't be able to reach the sub-directory, but by adding addional rules to your .htaccess file you can overcome this.

To do so, add another condition for each directory you want WordPress to ignore:

RewriteCond %{REQUEST_URI} !^/(someDirectory|someDirectory/.*)$
POST
mmombrea-headshot
By Matt Mombrea
Share

0 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Meet the Author

mmombrea-headshot
CTO / Partner

Matthew Mombrea

Matt is our Chief Technology Officer and one of the founders of our agency. He started Cypress North in 2010 with Greg Finn, and now leads our Buffalo office. As the head of our development team, Matt oversees all of our technical strategy and software and systems design efforts.

With more than 19 years of software engineering experience, Matt has the knowledge and expertise to help our clients find solutions that will solve their problems and help them reach their goals. He is dedicated to doing things the right way and finding the right custom solution for each client, all while accounting for long-term maintainability and technical debt.

Matt is a Buffalo native and graduated from St. Bonaventure University, where he studied computer science.

When he’s not at work, Matt enjoys spending time with his kids and his dog. He also likes to golf, snowboard, and roast coffee.