I'm using Collabnet Subversion Server with Apache. I'm trying to perform a simple rewrite directive under a specific directory and I can't seem to find out what the issues are. I have another server running Apache alone and the rewrite directives work as expected.
My .htaccess (simplified just to get the thing working)
Options +FollowSymLinks
RewriteEngine On
RewriteRule .* http://%{SERVER_NAME} [R,L]
Using the above .htaccess file contents, my page won't even load... If I remove
RewriteEngine On
the page will load, but the rewrite will not occur.
My http.conf (or the relevant parts):
RewriteEngine on
RewriteLog "rewrite.log"
RewriteLogLevel 9
<Directory "wwww">
Options Indexes FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Directory>
The RewriteLog and RewriteLogLevel directives also seem to be ignored. After restarting the Collabnet/Apache service, the rewrite.log file is created, but nothing is ever written to it.
I guess my real question is, has anyone else here configured Collabnet Apache service successfully with rewrite directives? As I mentioned above, I have another server running Apache alone and I can successfully perform the rewrites.
Or, does someone know why my logs aren't working properly? If perhaps I can get that far, maybe I would be able to debug the issue on my own...
Thanks.