How should htaccess be configured with two blogs on same server
-
How should htaccess be configured with two blogs on same server
I’ve created two separate wordpress installs on the same server – httpdocs/blog and httpdocs/packaging-design-blog.
How do I set-up the .htaccess file with both blogs running?
Right now the new blog links link the the first blog because of the .htaccess file.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>How do I add a RewriteRule to include the new blog?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How should htaccess be configured with two blogs on same server’ is closed to new replies.