Printable Version of Topic

Click here to view this topic in its original format

HTMLHelp Forums _ Web Server Configuration _ Language redirect using htaccess

Posted by: salami1_1 May 7 2007, 10:03 AM

Hi all,

I've been reading some info about htaccess redirecting and I would like to check if I understand it correct.

I'm building a new site and I want to accomplish the following:
site.com/en/somefile.php -> site.com/somefile.php?lanuage=en
site.com/fr/somethingelse.html -> site.com/somethingelse.html?language=fr
etc..

I have built the following:

CODE

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)/(.+)\.(.+) $2\.$3\?Language=$1 [NC]


would this work? I'm not sure about the use of '$' the variables..
Also I've seen one example but that one used a lot of php code and htaccess code.. so that made me doubt if the above is possible.. just that simple, or that I am missing something.

thanks for the responses!

WBR
Steven

Posted by: Darin McGrew May 7 2007, 10:41 AM

That looks right to me, but I haven't actually tried it.

Posted by: salami1_1 May 8 2007, 03:07 AM

well that is something smile.gif

I can't try it at the moment else I would have done that.. I sent it to main developer who does all the php etc .. he will put it online .. I jsut have to wait for that and see if it works

thnx

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)