Hello,
I have XAMPP 1.6.8. I tried to set up a vhost because I don't want to keep my projects in htdocs. The schema of httpd-vhosts.conf is below:
The problem is that browser can't find images and css because of paths - links are broken. They look like or When I delete the backslash links are OK.
Could You help me with this problem?
I have XAMPP 1.6.8. I tried to set up a vhost because I don't want to keep my projects in htdocs. The schema of httpd-vhosts.conf is below:
Code:
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
DocumentRoot C:\xampp\htdocs
ServerName localhost
ServerAlias localhost [URL unfurl="true"]www.localhost[/URL]
</VirtualHost>
<VirtualHost 127.0.0.1:80>
DocumentRoot D:\projects\prj1
ServerName prj1.localhost
ServerAlias prj1.localhost [URL unfurl="true"]www.prj1.localhost[/URL]
DirectoryIndex index.php
<Directory D:\projects\prj1>
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
The problem is that browser can't find images and css because of paths - links are broken. They look like or When I delete the backslash links are OK.
Could You help me with this problem?