Force redirect of URL with htaccess

Pharm

I'm looking for a way to do the following:

Redirect anyone that visits http://domain.com/register?a=signup&say=done& To: http://domain.com/done

The reason I'm doing this is the script I'm using is encoded, so I cannot go in and change the PHP code to redirect users to /done whenever they finish registering. The way it currently is, /register is already being used to mask the following:

RewriteRule ^register/?$ index.php?a=signup [NC,L]

Is there any way to go about doing this?

error2007s

Use this rule in your .htaccess file

RewriteCond %{QUERY_STRING} (^|&)a=signup($|&)
RewriteCond %{QUERY_STRING} (^|&)say=done($|&)
RewriteRule ^register$ /done? [L,R=301]

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related