Re: [us...@httpd] apache2 versus httpd

2009-05-05 Thread J Channel
Dude, why you going to Debian? =) 2009/5/5 Julius Thijssen jul...@gmail.com: How annoying, having to switch naming from CentOS/RHEL to Debian. - The official User-To-User support forum of the Apache HTTP Server Project. See

[us...@httpd] RewriteRule under JkMount location and server variables

2009-05-01 Thread J Channel
This config work ok with apache 1.3 VirtualHost *:8289 ServerName www.localhost.com RewriteEngine on RewriteLog /opt/logs/httpd_rewrite_log RewriteLogLevel 2 AddType application/octet-stream .mht AddType text/html .shtml AddType application/vnd.ms-excel .xls

Re: [us...@httpd] RewriteRule under JkMount location and server variables

2009-05-01 Thread J Channel
It's ignored because when you proxy content, it doesn't come from any on-disk directory. The enclosed directives are not applicable. Really? I dont know about it and already build site on this not applicable feature and serve it with apache 1.3 for years. Thanks, you open my eyes =)) --

[us...@httpd] Re: RewriteRule under JkMount location and server variables

2009-05-01 Thread J Channel
This give me what i want: Directory /opt/public_html Options Indexes FollowSymLinks Includes RewriteEngine On RewriteRule ^book/index.my.* ssi/test.shtml [L] AllowOverride None Order allow,deny Allow from all /Directory Location /book/

[us...@httpd] REDIRECT_URL in apache 2.2

2009-04-30 Thread J Channel
Hi. Simple example: I've put !--#echo var=REDIRECT_URL -- in file test.shtml Under apache 1.3 we can see /test.shtml in browser after opening http://localhost/test.shtml, with apache 2.2 this is (none) Why? - The official