Jump to content

[SOLVED] Problems accessing Get data with mod_rewrite


lachild

Recommended Posts

I am having difficulty accessing Get Data when using Mod Rewrite.  For instance my current rule is as follows:

 

RewriteRule ^(.+)/(.+)/(.+).html?(.*)$ home.php?country=$1&myLang=$2&page=$3&$4

 

So basicly a URL like www.mydomain.com/EN/E/home.html get re-written correctly and if I print_r($_GET) I get the correct information

 

array (
     'country' => 'US',
     'myLang' => 'E',
     'page' => 'home',
)

 

Thats how it should behave... Sort of..

 

If I use a URL like www.mydomain.com/EN/E/home.html?action=myaction  I still get the following:

 

array (
     'country' => 'US',
     'myLang' => 'E',
     'page' => 'home',
)

 

You'll notice that action is missing.  Is there any way to retrieve this data?

Link to comment
Share on other sites

Well after a bit more research I found the answer... The key is %{QUERY_STRING}

 

To get the correct data my full rewrite rule now looks like the following:

 

RewriteRule ^(.+)/(.+)/(.+).html$ home.php?country=$1&myLang=$2&page=$3&%{QUERY_STRING}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.