sub folder showing 404 wordpress page

Status
Not open for further replies.

chems

Active Member
1,231
2009
24
0
hello

im using wp and i have a subfolder on it main dir

and i mfacing a 404 page not found error while trying to access it

i know its rewrite rule problem

so i tried many tuts from google and didnt help

so this si my .htaccess

Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

note: im using nginx
 
2 comments
just to confirm ur doing it right - the name of the sub-folder should be typed "EXACTLY" how u created it - it is case sensitive.
 
Status
Not open for further replies.
Back
Top