Hello Friends, I want to change my url from, http:/mysitename/details.php?requested=name to http:/mysitename/name/ Please suggest me the url RewriteRule code! Thank You!
Try this RewriteEngine On RewriteRule ^([^/]*)/$ /details.php?requested=$1 [L] Code (markup): This code should work but if don't work is better to post in the apache section http://forums.digitalpoint.com/forumdisplay.php?f=49
Thank You very much Friend! Its working fine, But I am getting problem with other pages. I have http:/mysitename/category/index.html page which can be directly open by http:/mysitename/category/ when I open it, the url is http:/mysitename/category/ but I get the http:/mysitename/details.php?requested= page. When I delete .htaccess file they open normally. How should I fix this? please help me!