I was previously using the following rewrites to simplify URLs:
#RewriteCond $0 !^(index\.php/)?rooms/details [NC]
#RewriteRule ^(?:index\.php/)?rooms/(.+)$ /index.php/rooms/details/$1 [NC,L]
#RewriteCond $0 !^(index\.php/)?specialoffer/details [NC]
#RewriteRule ^(?:index\.php/)?specialoffer/(.+)$ /index.php/specialoffer/details/$1 [NC,L]These would allow this:
http://www.mywebsite.com/rooms/details/room_three
to work as this:
http://www.mywebsite.com/rooms/room_three
However, I have upgraded to the latest version of EE which I believe now has removal of index.php integrated into the core, where previously I was using this:
RewriteCond $1 !^(images|docs|themes|sitemap\.xml|admin\.php|index\.php) [NC]
RewriteRule ^(.*)$ /index.php/$1 [L]My URL simplification rewrites are no longer working however. Any ideas would be gratefully received. Thanks