[users@httpd] Re: Removing query string through .htaccess

2015-05-21 Thread Bob
Hello Kurtis, Thanks for your kind response. I have tried your rule sets but unfortunately it is working as before. i.e. http://mydomain.com/page1/?xyz and http://mydomain.com/page1?xyz both redirect to http://mydomain.com > On Fri, May 22, 2015 at 1:47 AM, Kurtis Rader wrote: > On Thu, May

Re: [users@httpd] Re: Removing query string through .htaccess

2015-05-21 Thread Kurtis Rader
On Thu, May 21, 2015 at 6:18 AM, Bob wrote: > > I'm also successful with following but goes to home page, can't preserve > the actual link > > RewriteCond %{THE_REQUEST} \?[^\ ]+ > RewriteRule (.*) /$1? [R=302,L] Works for me. Although I would write the rule like this RewriteCond %{QUERY_STRIN

Re: [users@httpd] Problem with name-based virtual hosts

2015-05-21 Thread Pierre Wieser
> On Sun, May 17, 2015 at 11:53 AM, Pierre Wieser wrote: > > Hi all, > > > > I am facing a problem with name-based virtual host on httpd 2.4.6 on CentOS > > 7. > > > > My httpd is configured as a reverse proxy, letting two internal domains be > > available > > from the internet. > > I have wanted

Re: [users@httpd]Does mod_maxmiddb take action after mod_rewrite?

2015-05-21 Thread Mike Rumph
Hello Rubén, I added a subject line to your email to make it easier to track. For questions related to mod_maxminddb, you are more likely to find help on the MaxMind support page: - https://www.maxmind.com/en/online-support-resources - https://github.com/maxmind/mod_maxminddb Thanks, Mike Rum

[users@httpd] Re: Removing query string through .htaccess

2015-05-21 Thread Bob
I'm also successful with following but goes to home page, can't preserve the actual link RewriteCond %{THE_REQUEST} \?[^\ ]+ RewriteRule (.*) /$1? [R=302,L] On Thu, 21 May 2015 12:23:42 + Bob wrote: > Hello All, > > I have already gone through a no. of links for removing query strings

[users@httpd] Removing query string through .htaccess

2015-05-21 Thread Bob
Hello All, I have already gone through a no. of links for removing query strings and till now all are going back to domain. The one I'm using presently is `` RewriteCond %{QUERY_STRING} . RewriteRule ^$ /? [R=302,L] ` As obvious the above goes back to homepage,

[users@httpd] SessionCryptoPassphrase

2015-05-21 Thread MOKRANI Rachid
Hi, About the following documentation I understand that I can set a "SessionCryptoPassphrase" for protect my session with a cookie. And if I change my SessionCryptoPassphrase from "my_secret_phrase" to "my_NEW_secret_phrase" and restart my server, the client browser should lost his session. h

[users@httpd]

2015-05-21 Thread Rubén Toribio Aldeguer
Hi we are working with a mod_maxminddb and apache 2.410. mod_maxminddb is configured to set de env variable GEOIP_COUNTRY_CODE The problem is that if we do: RequestHeader set GEOIP_COUNTRY_CODE %{GEOIP_COUNTRY_CODE}e We see correctly set the header. (is set to "ES", as we expected) But,in

[users@httpd] Query on Apache Webserver Server

2015-05-21 Thread Jauhari, Sachin
Hi, I want to use Apache Webserver with mod_jk module for HTTP load balancing with JBoss application server. However, Apache HTTP Server Project itself does not provide binary releases of software for Windows, only source code is available. The option is either to compile the Apache HTTP Serve

[users@httpd] Composing filters?

2015-05-21 Thread Ivan Voras
hello, On a virtual host I want to process every content going out with the SSI / INCLUDES filter. This content may be static files, may be coming from PHP or other tools (it's a mixed environment). Let's assume all content is text/html. What I thought I should do is simply: SetOutputFilter INCLU