[solved] /wp-admin results in error 404

#1
A brand new site. /wp-admin results in error 404, /wp-admin/index.php works. There is no htaccess and the index pages are there. Works perfectly fine in apache. Any thoughts?
 
#2
For the future, the fix was to rebuild the wordpress htaccess:

# BEGIN WordPress

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress
 
Top