Hi gentlemen
I want to do Url rewrite in Tomcat using UrlRewriteFilter This is the rule would like in mod_rewrite apache
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/$1 [L]
I'm confused in how to check the request filename if it's not a file or not a folder in UrlRewriteFilter
Can anybody help me?