0

I am using the server admin tool for the web and see where I can create sites with the +. I thought that was creating virtual directory but it doesn't seem to be. I need a site that uses port 80 but is like http://myserver/myvirtual instead of http://myserver which is what this one with the + does.

how do I make a virtual directory with the tool like in IIS?

Thank you.

edit: how can I put a bounty on this?

johnny
  • 2,268
  • 9
  • 35
  • 54

1 Answers1

1

I've no idea what tool you are talking about, but you can create a new config file:

/etc/apache2/other/myConfigFile.conf

And add an alias directive:

alias /myvirtual /Users/bob/myvirtual

(Then restart the web server)

Quentin
  • 1,117
  • 6
  • 10