Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache, LocationMatch: match query string

How can I match a query string using LocationMatch with apache?

<LocationMatch "/index.php\?a=b.*">
// ...

... won't work unfortunately.

like image 800
watain Avatar asked Jan 07 '10 10:01

watain


2 Answers

Looks like you can't include query strings in Location/LocationMatch.

From the Apache Docs:

For all origin (non-proxy) requests, the URL to be matched is a URL-path of the form /path/. No scheme, hostname, port, or query string may be included. For proxy requests, the URL to be matched is of the form scheme://servername/path, and you must include the prefix.

like image 110
amiuhle Avatar answered Oct 20 '22 00:10

amiuhle


https://serverfault.com/questions/848320/can-locationmatch-regex-match-query-string-portion

Actually it's possible since Apache 2.4 (or less) using the tag as follow :

<LocationMatch "/test/upload.js">
        <If "%{QUERY_STRING} =~ /query=test/">
                ..
                'Your directives'
                ..
       </If>
</LocationMatch>

In this configuration directives will be applied only in the case the URL is under the form "/test/upload.js" and contains the query "query=test".

like image 20
ziGuy Avatar answered Oct 19 '22 23:10

ziGuy