Can someone please tell me exactly how to set up a virtual directory called "business" which will point to the
index.php page in c:\xampp\htdocs\TickTock_int such that when I type http://localhost:888/business I will go to the site
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
I was under the impression that I needed to edit the following file:
C:\xampp\apache\conf\extra\httpd-vhosts.conf file
doctorbill
ASKER
Sorry- wrong file:
It is the c:\xampp\apache\conf\httpd.conf file that needs to be edited
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
I wanted to be able to see how to use virtual directories
Problem solved using the entries below:
In the alias section of the httpd.conf file:
Alias /business "C:/xampp/htdocs/TickTock_int"
Create a directory entry:
<Directory "C:/xampp/htdocs/TickTock_int">
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>