wordpress wp-admin cannot access

Solution:

Try this in your .htaccess file.

# BEGIN WordPress

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

# END WordPress

Sounds like you removed one already or a permissions error.. Not really a stackoverflow question though.. More a superUser question IMO.