My website has URL like this
domain.com/profile.php?id=your_profile_id
now how do i turn it into URL like this
domain.com/profile/your_profile_id
I tried this thing in .htaccess
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule !.*.php$ %{REQUEST_FILENAME}.php [QSA,L]
and it’s just helps me to remove .php extension. not the exact thing what i want.
Thanks in advance. have a great day.
2
Answers
With your shown samples, please try following rules. Please make sure to place your htaccess file along with your profile.php file.
Also please make sure to clear your browser cache before testing your URLs.
what you want to do actually? see if you want to show result as per URL on none existing page / 404 page code on 404 page ,
if you just want URL for statements you can go with simple $_SERVER[‘REQUEST_URI’];
after fetching URL perform such