180 links
  • BigBrainBag
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
9 results tagged apache x
  • How to discard the query string in a RewriteRule (Apache, mod_rewrite)
    How to discard the query string in a RewriteRule (Apache, mod_rewrite)
    16 AUGUST 2012 on apache
    Removing the query string in a rewrite rule of Apache's module modrewrite is a bit tricky. Let's say you want to redirect the url http://www.example.com?query=test to http://www.example.com/noqueries in Apache with modrewrite enabled. Rewriting the URL is no problem but Apache always appends the original query string (?query=test) to the resulting URL which we don't want in this example. If you're using Apache 2.4 or later you can use the QSD option (qsdiscard) to remove the query string like this:

    RewriteCond %{QUERY_STRING} ^query=test$  
    RewriteRule ^/$ /noqueries [QSD,R=301,L]  
    However if you're using an earlier version of Apache (like 2.2) this solution won't work. We have to use a little trick to make this happen:

    RewriteCond %{QUERY_STRING} ^query=test$  
    RewriteRule ^/$ /noqueries? [R=301,L]  
    Notice that instead of setting the QSD option we added the question mark to the result URL. This generates the URL we wished for (http://www.example.com/noqueries) adding a new (empty) query string. The original query string is completely discarded. Have fun url-rewriting ;-)
    Mon Apr 24 12:15:04 2017 * - permalink -
    QRCode
    - archive.org - https://www.philipphoffmann.de/2012/08/16/how-to-discard-the-query-string-in-a-rewriterule-apache-mod_rewrite/
    apache discard htaccess query redirect string
  • HowTo Install Redmine on Debian 8 with Apache2-Passenger - Redmine
    HowTo Install Redmine on Debian 8 with Apache2-Passenger
    Fri Apr 21 10:08:18 2017 - permalink -
    QRCode
    - archive.org - http://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_on_Debian_8_with_Apache2-Passenger
    apache config debian install linux redmine ruby ubuntu
  • apache - VirtualHosts ONLY no default? - Stack Overflow
    apachectl -S
    Fri Mar 10 15:47:12 2017 - permalink -
    QRCode
    - archive.org - http://stackoverflow.com/questions/24661687/virtualhosts-only-no-default?rq=1
    apache default virtualhost
  • Default Virtual Host in Apache
    Fri Mar 10 15:46:55 2017 - permalink -
    QRCode
    - archive.org - http://jblevins.org/log/default-virtual-host
    apache default virtualhost
  • Apache default VirtualHost - Stack Overflow
    apache
    Fri Mar 10 15:46:36 2017 - permalink -
    QRCode
    - archive.org - http://stackoverflow.com/questions/5427379/apache-default-virtualhost
    apache default virtualhost
  • python - ImportError: No module named PIL - Stack Overflow
    apt-get install python-imaging
    Fri Mar 10 15:46:00 2017 - permalink -
    QRCode
    - archive.org - http://stackoverflow.com/questions/8863917/importerror-no-module-named-pil
    apache module modules pil pip python setup
  • mod wsgi › Apache › Wiki › ubuntuusers.de
    a2enmod wsgi
    Fri Mar 10 15:45:21 2017 - permalink -
    QRCode
    - archive.org - https://wiki.ubuntuusers.de/Apache/mod_wsgi/
    apache python setup wsgi
  • How To Set Up an Apache, MySQL, and Python (LAMP) Server Without Frameworks on Ubuntu 14.04 | DigitalOcean
    How To Set Up an Apache, MySQL, and Python (LAMP) Server Without Frameworks on Ubuntu 14.04
    Fri Mar 10 15:44:56 2017 - permalink -
    QRCode
    - archive.org - https://www.digitalocean.com/community/tutorials/how-to-set-up-an-apache-mysql-and-python-lamp-server-without-frameworks-on-ubuntu-14-04
    apache python setup
  • Administrator's Guide, Parallels Plesk Panel 11.5
    Fri Mar 10 15:42:42 2017 - permalink -
    QRCode
    - archive.org - http://download1.parallels.com/Plesk/PP11/11.5/Doc/de-DE/online/plesk-administrator-guide/index.htm?fileName=70742.htm
    apache cgi fastCGI handler module php php-fpm server
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation