Forum Moderators: phranque
public_html/startontop
My controller file is at:
public_html/startontop/new/www/index.php
My domain name points to public_html/startontop, so I have a .htaccess file at the location which looks like:
RewriteEngine on
RewriteBase /
RewriteRule ^images/(.*)$ new/www/images/$1 [NC,QSA,L]
RewriteRule ^css/(.*)$ new/www/css/$1 [NC,QSA,L]
RewriteRule ^js/(.*)$ new/www/js/$1 [NC,QSA,L]
RewriteRule (.*)$ new/www/index.php?requestName=$1 [NC,QSA,L]
The problem is I just installed Wordpress at public_html/startontop/wp and all requests to it are getting redirected to:
public_html/startontop/new/www/index.php
Does anyone know what lines I can add to this file to have it ignore all requests to "wp.*"?