question about .htacess and 2 blogs
-
I’ve got 2 blogs loaded. One is at https://4clicksgps.com/wordpress and the other is at https://4clicksgps.com. I want to change the permalinks in both of them to be:
“Date and name based
? https://4clicksgps.com/wordpress/2006/01/29/sample-post/”The .htaccess entry for the 4clicksgps.com/wordpress blog should be:
“<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php
</IfModule>”The .htaccess entry for the 4clicksgps.com blog should be:
“<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>”When I set it up like this, when I click on a link on the https://4clicksgps.com/wordpress site, it goes to the https://4clicksgps.com site. Can someone tell me how to properly set this up?
- The topic ‘question about .htacess and 2 blogs’ is closed to new replies.