Forum Moderators: phranque
I have searched endlessly for solutions here I can seem to fix my problem. The problem I seem to face is that I need to place an annoying trailing slash at [svn.example.com...] for it to work properly otherwise it redirects to [svn.example.com:443...] Here's a snippet of what I have in my httpd.conf:
<Virtualhost *:80 *:443>
ServerName svn.example.com
RewriteEngine On
Options +FollowSymlinks
RewriteCond %{SERVER_PORT} !443$
RewriteRule ^(.*)$ [svn.example.com$1...] [R=301,L]
# Subversion Config
<Location /project >
DAV svn
SVNPath /data/svn/project
SVNIndexXSLT "/svnindex.xsl"
...
</Location>
</Virtualhost>
I have another subdomain on the site which works perfectly fine for http -> http redirection