My clients log in to their hit reports at:
http://reports.domain.com:8000
I would like for them to be able to leave off the :8000. A listening error occurs if I set the port to 8000 as the reporting software, Summary Pro is already listening on that port.
So it seems that a URL ReWrite is the answer. No luck so far.
When I have tried to do a rewrite:
^/reports.domain.com(.*)$
Perform an internal redirection
/reports.domain.com:8000$1
an "error 403 - forbidden" is returned.
Any suggestions?