View Single Post
  #8 (permalink)  
Old 05-16-2006, 08:50 PM
apondonet apondonet is offline
5 Star Member
 
Join Date: Apr 2006
Posts: 21
Default

Teli:

I did exactly as you said and selected the Custom structure: /%year%/%monthnum%/%day%/%postname%/ in Admin

WordPress spit out the following code for .htaccess:

Code:

RewriteEngine On
RewriteBase /blog/wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/wordpress/index.php [L]
The URLs still have 'index.php' in them for example:
/blog/wordpress/index.php/category/marketing/
/blog/wordpress/index.php/2006/05/14/website-update-05-14-2006/

How do I remove the index.php in the URL?

Also, all other URLs work fine except the Main RSS URLs which still are in the format:
/blog/wordpress/feed/
/blog/wordpress/comments/feed/

...and do not work. I guess they are re-written incorrectly. I believe the fix is a code snippet for .htaccess

The odd thing is that the Category feeds which are in the same format: /blog/wordpress/category/marketing/feed/ work fine!!

Any ideas?
Reply With Quote