Each user can visit their account profile by www.example.com/profile/{username}
note: username contains numbers and letters only
For example: www.example.com/profile/michaelwatson www.example.com/profile/jenniferlee2
Would like to redirect from old URL: www.example.com/profile/jenniferlee2
to the new shorter URL www.example.com/jenniferlee2
I want anyone that have old bookmarks to go from old URL to the new URL and anyone looking but only for profile URLs. Anything else should remain the same.
This is what I tried adding to .htaccess but getting internal server error
RewriteRule (.*) /profile/$1 [L]
http://www.example.com/contactand that is handled by index.php I will get redirected to/profile/contactgiven your current rule. - Prix