Install second wordpress in root subfolder, Error 404
I am trying to install wordpress in a subfolder of an existing wordpress installation. I created a the subfolder /wp
unziped a fresh Wordpress download inside of that directory and added a .htaccess
with the following content:
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
However if I visit mysite.com/wp
I get an error 404 not found. I already tried the following: Restarting Apache and adding the .htaccess
content to the root .htaccess
. But it did not help.
Topic directory htaccess installation Wordpress
Category Web