2nd Classipress install in a sub-folder
Hi all,
I've installed a second Classipress into a subfolder as I want to run a separate directory but which still looks like the original installation.
The 2nd install is fine until I click on the sample advert (or any other content link) at which point it takes me to my original installation and a 404 error.
I tried creating two htaccess files which can be seen below to see if that resolves the problem:
htaccess for 1st Installation (in the Root)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
htaccess for 2nd Installation (in sub-folder /pro-advice/)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /pro-advice/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /pro-advice/index.php [L]
</IfModule>
Neither of these files seems to make a difference. I've tried changing the global path variables from 'ads' to 'listings' and saved the permalink structure each time but still getting the same problem.
Where am I going wrong? I want the user to remain in the 2nd installation looking at whatever content is there until they click out of it to the first installation.
Thanks