hi folks
Right now I’m using the following .htaccess to remove the incredibly ugly /index.php from my EE2 URLs:
RewriteEngine On
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]… everything works great — except if a entries {url_title} contains punctuation (like: domain.com/news/article/apple-releases-ios-4.0-for-iphones ). The Page will be left blank … but if I add index.php/ by myself into the url, the entry is shown.
Is there a better .htaccess-Code which does not break up these entries with punctuation in the title?