WordPress issues with app installed in subfolder
-
I have installed wordpress in the root of my drive. After a while we decided that we also wanted to put an online store using Magento on the domain as well. What is happening is that when I am checking out in Magento, the wordpress login screen appears on the right side of my Magento checkout screen, or the wordpress menu if I am logged in. I have tried to add an exception in the .htaccess file for the subfolder, but it doesn’t seem to have any effect. Does any one have any ideas? My .htaccess file looks like this:
<IfModule mod_rewrite.c>
RewriteEngine on
#
RewriteCond %{REQUEST_URI} “/shop/”
RewriteRule (.*) $1 [L]
#
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/(shop|shop/.*)$
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
- The topic ‘WordPress issues with app installed in subfolder’ is closed to new replies.