SMFHacks.com

Modifications/Themes => General SMF Forum => Topic started by: shuban on April 06, 2017, 11:45:50 pm

Title: With .htaccess, how do I redirect an action to another action
Post by: shuban on April 06, 2017, 11:45:50 pm
I.e.

https://URL.com/index.php?action=someaction -> https://URL.com/index.php?action=someaction2
Title: Re: With .htaccess, how do I redirect an action to another action
Post by: nend on April 26, 2017, 10:29:51 am
Maybe something like
Code: [Select]
RewriteRule ^index.php?action=someaction ./index.php?action=someaction2[L,QSA]