This is my htacess file:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^(.*)\.mydomain\.com(.*)
RewriteRule .* inside.php?tx=%1&filter=%2
This url: hello.mydomain.com goes to www.mydomain.com/inside.php?tx=hello Thats correct.
Now i need this url hello.mydomain.com/bye/ goes to www.mydomain.com/inside.php?tx=hello&filter=bye, but don't work. Only goes to www.mydomain.com/inside.php?tx=hello
This htaccess is ignoring the second variable (bye). Help please.