.htaccess - Setting up mod_rewrite in htaccess -


i need set rules:

if url is:

www.example.com/test1234 

then:

www.example.com/load.php?id=1234 

if url is:

www.example.com/proceed1234 

then:

www.example.com/activate.php?id=1234 

my .htaccess following:

rewriteengine on rewriterule ^test/([0-9]+)/?$ /load.php?id=$1 [l] rewriterule ^proceed/([0-9]+)/?$ /activate.php?with=$1 [l] 

and don't know why doesn't work. not @ regexpressions, please, me find right solution, please.


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -