I'm new to this, please have grace...
So I understand changing the .htaccess file to let users type in a new link, and then it reference the old page as seen here:
I want to access 127.0.0.1/site/result.php?par1=var1&par2=var2&par3=var3, by typing in 127.0.0.1/site/var1-var2-var3.html
.htaccess file:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*)_(.*)_(.*)\.html$ result.php?var1=$1&var2=$2&var3=$3
it works... but now, how do I automatically when I submit the form, get the new link to display? Or in other words, how do when we type in 127.0.0.1/site/result.php?par1=var1&par2=var2&par3=var3 be redirected to 127.0.0.1/site/var1-var2-var3.html?
Any help would be appreciated!