Jump to content

Apache URL Rewriter - QSA Flag Problem


Recommended Posts

Hey folks,

First time poster here... looks like a great community! I'm having an issue with the Apache URL Rewriter module. The web app that I'm building needs URLs to be converted from this format:

/My.Class?Arg1=x&Arg2=y

To this format:

/index.php?Class=My.Class&Arg1=x&Arg2=y

My rewrite rule looks like this:

RewriteRule ^(.*)$ index.php?Class=$1 [QSA]

Now the odd part is, this actually works... but my PHP script ends up receiving two copies of the 'Class' argument. I had my PHP script print out the exact query string for analysis:

/index.php?Class=index.php&Class=My.Class&Arg1=x&Arg2=y

I'm absolutely baffled as to why the rewrite engine is appending another Class argument on to the URL... and why in the world it's equal to 'index.php'. All I can think is that maybe I misunderstood the functionality of QSA. Any ideas?

Thanks in advance!! :thumbup

Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...