Re: [users@httpd] Rewrite rule

2014-04-30 Thread Sebastien Moretti
RewriteCond %{QUERY_STRING} ^action=cs_query$ RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] Very close with this one ... Try: RewriteCond %{QUERY_STRING} ^action=cs_query$ RewriteRule ^/cgi-bin/blt$ - [G] As I said before, you can't include the query string in RewriteRule state

Re: [users@httpd] Rewrite rule

2014-04-30 Thread Sebastien Moretti
I tried the following thing without success. RewriteEngine on RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] mod_rewrite matches the URi not the the query string. Read about RewriteCond here: http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritecond I tried RewriteCond

[users@httpd] Rewrite rule

2014-04-30 Thread Sebastien Moretti
Hi I encounter problems to rewrite a rule The page /cgi-bin/blt?action=cs_query is now gone and I would like to notify this. I tried the following thing without success. RewriteEngine on RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] An idea ? I tried with \? without success. I have othe