View Single Post
Old 2008-02-03, 03:34 AM   #10
Element115
I'm going to the backseat of my car with the woman I love, and I won't be back for TEN MINUTES
 
Element115's Avatar
 
Join Date: Dec 2007
Posts: 86
Quote:
Originally Posted by Simon View Post
One thing to keep in mind is that WordPress will either create or ask you to create an htaccess file in your blog directory if, for example, you wish to have 'search engine friendly' URLs for your blog pages. If you're using WP and/or do have another htaccess in your blog directory for some reason, just add your 404 statements to that htaccess too and you should be fine.
When you talk about using the htaccess to make your URL's more search engine friendly, what do you mean exactly? Do you mean this code here?

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

or were you referring to something else?
Element115 is offline   Reply With Quote