I am using .htaccess.
My original link is:
http://example.com/CareerDays/index.php?u_type=admin
And I\'m trying to make it look lik
This RewriteRule would never match...
You have to place the .htaccess in the root directory, with this code:
RewriteEngine On RewriteRule ^v/([^/]*)$ CareerDays/index.php?u_type=$1 [L]