I currently have a nifty little .htaccess file that makes the main index page of my site look like its at the site root:
CODE
DirectoryIndex ./mt/blog/index.html
This makes the main index of my site look like:
http://www.pastywhitegirl.com
instead of:
http://www.pastywhitegirl.com/mt/blog/index.html
I've got my indexes turned off, google blocked, and all that good stuff. Now, my question:
I'd like to put another weblog in a subdirectory, lets say i'm going to put all my files at:
/mt/blog/blah/
can I use .htaccess to get the index page for the sub-weblog to look like:
http://www.pastywhitegirl.com/blah/
instead of:
http://www.pastywhitegirl.com/mt/blog/blah/
?
Do I add something to the .htaccess file in the root directory, or do I add a new .htaccess file to the /blah/ directory?
Any help is most appreciated!