application uses url like http://www.mydomain.com/item/3193.html to select and show proper record from mysql database.
just to mention, application is written in php, hosted on apache web server..
in fact that should be http://www.mydomain.com/item.html/3193.html, but in .htaccess i have RewriteRule that helps me to treat it like http://www.mydomain.com/item/3193.html
but on the new server that RewriteRule, from some reason does not work. as i said, it is defined in .htaccess with:
RewriteEngine On
RewriteBase /
#some conditions here
RewriteRule ^item/(.*) item.html/$1
#more conditions here
so, it works on old server. it (looks like ?) that it's not working on new server...
so, first of all, i will check with hosting provider if rewrite rules are allowed on server.
also, if they are (and i guess that they are), can i change syntax for this RewriteRule, to get ability i need?
thank you very much in advance!