Question : wordpress blog htaccess content

Hi there,

I was setting up a wordpress blog in my own server. This issue is regarding the
settings for .htaccess. I want to have the settings

www.domainname.com/year/month/day/title , and I choose this option in the word press control panel, and I see that my .htaccess got automatically inserted the below content. But when I click on the blog title, it takes me to the correct URL, but gave a 404 page not found error message.

Not Found

The requested URL was not found on this server.

Please let me know why the setting is not working correct.

Thanks,
techbie
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

 
# END WordPress
Open in New Window Select All

Answer : wordpress blog htaccess content

Did you already confirm that you can use mod_rewrite in .htaccess files? Don't forget to flush the cache of your browser prior testing.

E.g. with
1:
2:
3:
RewriteEngine On
# redirect every request to google
RewriteRule ^  http://www.google.com/ [R,L]
Open in New Window Select All
Random Solutions  
 
programming4us programming4us