Tagged Questions
0
votes
0answers
158 views
virtual hosts on lighttpd can't load
Thats what I did:
Added following code to lighttpd.conf
$HTTP["host"] =~ "(^|\.)test\.com$" {
server.document-root = "/home/test"
}
created /home/test
Restarted Lighttpd
but it doesn't load ...
0
votes
2answers
83 views
Apache - Redirect to a bootstrap
Apache2
CentOS 6
I am trying to work out how to make an Apache VHost send all of its requests to an index page as a kind of bootstrap. I do not wish to alter the look of URL, however all requests ...
0
votes
1answer
223 views
Wildcard vhost subdomains with 301 redirect
At the moment I create a .htaccess file which redirects non-existent sub domains to the root URL.
E.g
<VirtualHost *:80>
ServerAdmin www@example.co.uk
ServerName example.co.uk
...