I am running apache2 on Debian etch, with multiple virtual hosts.
I want to redirect so that http://git.example.com
goes to http://git.example.com/git/
Should be really simple, but Google isn't quite cutting it. I've tried the Redirect and Rewrite stuff and they don't quite seem to do what I want ...
Feel a bit silly - a bit more googling turned up the answer I was after:
Basically redirecting the root, and only the root.
This code could do in a
.htaccess
file (there is a tag for this, so I assume that is the original use case). But if you can edit ,the main server apache config then put it in the section for your website probably inside a<VirtualHost>
section.The docs for RedirectMatch say that the context can be "server config, virtual host, directory, .htaccess".
You've got the correct answer there with the redirect. You have to be careful when redirecting everything to somewhere else, since you can get recursive redirects there. This happens if you want to put up a maintenance page.
You can use Redirect directive.
The accepted answer resolved my issue, but I also found that I had to add a 404 redirect for non-existant pages -- my situation is that have an OwnCloud installation located one level below root (https://example.com/owncloud).
This worked for me, to send everything to my subdirectory: