Has the structure of the .htacces changed a lot in 2.0?
All my .htaccess has in it now is this...
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
# END WordPress
Before there were loads of entries.
i have a long url page that rewrites like this:
mysite.com/parent_page1/parent_page2/parent_page3/item/
i would like to make a manual rewrite so it is just
mysite.com/item/
suggestions? Thanks