This is a discussion on problem with rewrite within the Apache Web Server forums, part of the Web Server and Related Forums category; Hello, I've put this in my httpd.conf (apache 2) but it doesn't works why? <VirtualHost *:8080&...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
I've put this in my httpd.conf (apache 2) but it doesn't works why? <VirtualHost *:8080> ServerName mail.bou.xx DocumentRoot "F:\xxxx\quirrelmail" RewriteLogLevel 9 RewriteLog logs\rewrite.log RewriteEngine on RewriteRule ^lmail$ "boubou" </VirtualHost> I'd like to replace http://mail.bou.xx by http://boubou.bou.xx I've also put LoadModule rewrite_module modules/mod_rewrite.so but not AddModule which is not necessary in pache 2. Thanks. |
|
|||
|
Thierry B <thbouhnik@free.fr> wrote:
> I'd like to replace http://mail.bou.xx by http://boubou.bou.xx Why making things difficult? <VirtualHost *:8080> ServerName boubou.bou.xx ServerAlias mail.bou.xx UseCanonicalName on DocumentRoot .... ...other directives... </VirtualHost> Davide -- | ...A Microsoft spokesperson said, "while fighting software piracy is | good for our business, highway robbery is our business." -- From | a Slashdot.org post | |