• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "Is this possible on Apache....."

Collapse

  • SimonMac
    replied
    Originally posted by NickFitz View Post
    Just tried it as you have it in those VirtualHost configs; works for me
    You're right it does work, it does however screw up the css and relative paths etc so not worth doing

    Leave a comment:


  • NickFitz
    replied
    Just tried it as you have it in those VirtualHost configs; works for me

    Leave a comment:


  • SimonMac
    started a topic Is this possible on Apache.....

    Is this possible on Apache.....

    I have a webserver running apache, using Virtual Hosts I have multiple websites/multiple domains running under
    Code:
    /var/www/<domainname>/html/....
    /var/www/<domainname2>/html/....
    /var/www/<domainname3>/html/....
    One of the websites has an admin function under the folder /stuff
    Code:
    /var/www/<domainname>/html/stuff
    so if I go to www.domain.com/stuff it appears.

    I want to hive of stuff from a folder on one domain, to a subdomain stuff.domain.com, if I create another entry in virtual hosts file but point the directory to
    Code:
    /var/www/<domainname>/html/stuff
    would that work?

    Something like this?

    Code:
    <VirtualHost *:80>
        ServerAdmin [email protected]
        ServerName domain.com
        ServerAlias www.domain.com
        DocumentRoot /var/www/domain.com/html/
        ErrorLog ${APACHE_LOG_DIR}/domain.com-error.log
        CustomLog ${APACHE_LOG_DIR}/domain.com-access.log combined
    </VirtualHost>
    
    <VirtualHost *:80>
        ServerAdmin [email protected]
        ServerName sub.domain.com
        ServerAlias www.sub.domain.com
        DocumentRoot /var/www/domain.com/html/stuff
        ErrorLog ${APACHE_LOG_DIR}/sub.domain.com-error.log
        CustomLog ${APACHE_LOG_DIR}/sub.domain.com-access.log combined
    </VirtualHost>

Working...
X