I am trying to write a patter in such a way that this link :
http://www.mysite.com/link/go/[email protected]
is interpreted like this :
http://www.mysite.com/[email protected]
But i dont know how to write. I tryied this but it is not working. Need help please.
This what I wrote in my .htaccess file but not working :
Options +FollowSymlinks RewriteEngine on RewriteRule ^link/go/overview/([A-Za-z0-9-]+)$ /process.php?email=$1 [NC,L]
Thanks