HTACCESS HELP
-
Hey Guys,
Hoping someone can help as i’ve got a rather odd issue.
I have two wordpress blogs running in a single host. One on the base level, the second in a sub-folder.
Now essentially the two wordpress blogs are running off the .htaccess file on the base folder.
So basically:
/ – blog one
/.htaccess – htaccess for both blogs
/central/ – blog twoThe issue i’m having is that i’m attempting to install a form mailer however i can seem to exclude the cgi-bin folder at
/central/cgi-bin/
From the redirect. The coding in the htaccess is as follows:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
- The topic ‘HTACCESS HELP’ is closed to new replies.