Hello,
I'm using the following URL rewriting rule :
RewriteEngine On RewriteBase
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1[L]
This works really well, but I have a problem when the URL is pointing to an anchored content
www.mydomain/mypage#myanchor is rendered as www.mydomain/mypage#myanchor/ <- that last slash I want to remove.
Can someone please help ?