Here is my problem..
Using the domain jeepers.com as an example, I have WordPress install at the root.
My .htaccess file is this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Now let’s say I have installed PHPlist in public_html/lists and I try to go to jeepers.com/lists I get redirected to my WordPress installation and given a 404 error.
How do I get around this?
Hopefully someone has an answer on this because I am about to lose my mind ??