2nd classipress site in a subfolder with 2nd addon domain
I am setting up a 2nd website as a subfolder of the 1st site. The domain name of the 2nd site is from another company.. I have changed the nameservers of the 2nd domain to point to the 1st domains name servers..
I now have a fresh wordpress install of the 2nd site in the subfolder.
Under wordpress admin: General Settings: I set up as follows:
WordPress Address (URL): 1stdomain.com/subfolder
Site Address (URL): 2nddomain.com.
When i test the site (2nddomain.com). it works well BUT as soon as I click on another link: example: 2nddomain.com/addnew (Post an ad), I get an INTERNAL SERVER ERROR:
Currently: my permalink:
And my htaccess file inside: 1stdomain/subfolder is:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /ads/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /ads/index.php [L]
</IfModule>
# END WordPress
I have a feeling its something to do with my PERMALINKS and HTACCESS FILES... there could be more reasons.. please help..