Hello,
I have writen this script in .htaccess:
RewriteEngine on
RewriteBase /
RewriteRule pers/(.*) http://www.mysite.net/personals/skpers.php?u=$1 [L,R]
It is ok, infact if i write:
www.mysite.net/pers/example
it redirecto to:
www.mysite.net/personals/skpers.php?u=example
But i must do this way:
if write:
www.mysite.net/?example
it redirect to:
www.mysite.net/personals/skpers.php?u=example
I have tried with this script:
RewriteEngine on
RewriteBase /
RewriteRule pers/^/?(.*) http://www.mysite.net/personals/skpers.php?u=$1
[L,R]
But don't work, why?
Thanks