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
note: im using nginx
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