I have a homepage http://homepage.com/ which use port 80 using apache2. I host a SPARQL endpoint at http://homepage.com:8080/sparql/ but I would like to rewrite this to www.homepage.com/sparql including get queries such as:
www.homepage.com:8080/sparql/?default-graph-uri=&query=select+distinct+%3FConcept+where+%7B%5B%5D+a+%3FConcept%7D+LIMIT+100
I have played around with Redirect and Rewrite but I am not able to achieve the desired effect. In my .htaccess I exactly have the following:
Redirect 301 http://homepage.com/sparql/* http://homepage.com:8080/sparql/*
What is the correct way to setup such a redirect?
*Edit: When I write transparent I mean that the URL should stay the same i.e. the port number is hidden.