I want to convert
http://example.com/c...ry.php?id=Rohit
to
http://example.com/Rohit
I tried Running this code in .htaccess file
Options -Multiviews
RewriteEngine On
RewriteRule ^([^/]*)$ /category.php?id=$1 [L]
But it Didnt work. Later i converted the .htaccess file to
Options -Multiviews
RewriteEngine On
RewriteRule ^website/(.+)$ category.php?id=$1
and this works but now my URL looks like this
http://example.com/website/Rohit
which means my .htaccess file is working
please help to make my URL like this
http://example.com/Rohit