I want to use url rewriting in my site as follow: When user try to access
http://www.mysite.com/sectionname/
for processing it must go to file as
http://www.mysite.com/handler.php?sect=sectionname
but in address bar user must see first url only.
I used following code but it's not working
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([^/]+)$ sectionthumbs.php?sect=$1
but it's not working. Please tell me where I m wrong. Thanks in advance....