I'm using the following htaccess code.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
RewriteRule ^Profile/([0-9]+)/?$ ViewProfile.php?id=$1 [NC,L]
This is the url http://localhost/ConnectMyProfile/ViewProfile.php?id=CMP26944
I need to convert this url to http://localhost/ConnectMyProfile/ViewProfile/CMP26944
For that i used this code (RewriteRule ^Profile/([0-9]+)/?$ ViewProfile.php?id=$1 [NC,L]).
It's not working.Please help me to fix this.