Hi,

I'm struggling to get an Apache rewrite rule to work.   I have a  
simple rule that for a request to "a.html" will be sent to "b.html".   
However the requests for "a.html" are always sent to my Rails apps.   
Here is my  Apache configuration:

<VirtualHost 216.154.219.19:80>
<Directory /u/apps/simplelog_2.0.2/public/>
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
DirectoryIndex index.php index.html
</Directory>
ServerName scottwalter.com
DocumentRoot /u/apps/simplelog_2.0.2/public
SuexecUserGroup webadmin webadmin
RewriteEngine On
RewriteRule ^a\.html$ b.html
ProxyPass / http://127.0.0.1:3002/
ProxyPassReverse / http://127.0.0.1:3002/
ProxyPreserveHost on
ServerAlias "www.scottwalter.com"
ServerAdmin "[EMAIL PROTECTED]"
CustomLog "/u/apps/simplelog_2.0.2/log/access_log" "combined"
ErrorLog "/u/apps/simplelog_2.0.2/log/error_log"
</VirtualHost>

Does anyone have any ideas? 
   
_______________________________________________
Mongrel-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/mongrel-users

Reply via email to