Page not found error for ads on a domain with two WordPress installations
Hello,
I have two separate WordPress instances installed on my domain:
1) First wordpress installation runs within the "domain.com" root folder and have ClassiPress installed
2) Second wordpress installation runs within the "domain.com/folder" subfolder and have other theme installed. On the second wordpress installation (domain.com/folder) everything works like a charm.
However, on the first installation (domain.com) I noticed that ads' pages does not work properly and return "Page not found" error everytime I try to visit them. Regular pages work fine without any issues.
I tried refreshing/saving permalinks for both sites, but it didn't fix the issue.
I didn't want to install Multisite, because I want to have two
WP instances running separately.
Do you have an idea of what might cause this issue? Did anyone run into similar issue?
This is the .htaccess file of the first
WP installation (domain.com):
HTML Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
This is the .htaccess file of the second
WP installation (domain.com/folder):
HTML Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /artykuly/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /artykuly/index.php [L]
</IfModule>
# END WordPress
Best regards.