Move all doc build stuff to doc/source/GNUmakefile, leaving a 'make dok'
[privoxy.git] / doc / webserver / .htaccess
1 # http://privoxy.org/.htaccess
2 #
3 # By Jon Foster
4 #
5 # Intercepts requests for these servers:
6 #    http://ijbswa.sourceforge.net/
7 #    http://privoxy.com/
8 #    http://www.privoxy.com/
9 #    http://privoxy.org/
10 #
11 # And redirects all requests to the canonical web server:
12 #    http://www.privoxy.org/
13 #
14 #
15 # Uses Apache's mod_rewrite
16 # See http://httpd.apache.org/docs/mod/mod_rewrite.html
17 #
18
19 # Enable mod_rewrite
20 RewriteEngine on
21
22
23 RewriteCond %{HTTP_HOST}   !^www\.privoxy\.org\.?$ [NC]
24 RewriteCond %{HTTP_HOST}   !^$
25 RewriteRule ^(.*)$         http://www\.privoxy.org/$1 [R,L]
26