I have checked several tutorials on the web and answers here, none seem to be working for me. I am unable to set up my local web server so my projects are available via name other than http://localhost/projectname
Here is my httpd-vhosts.conf
<VirtualHost 127.0.0.2:80>
ServerAdmin me@me.me
ServerName tweet
DocumentRoot "D:\xampp\htdocs\tweet"
ErrorLog logs/tweet-error_log
CustomLog logs/tweet-access_log common
<Directory "D:\xampp\htdocs\tweet">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride None
Order Allow,Deny
Allow From All
</Directory>
</VirtualHost>
And here is my hosts:
127.0.0.1 tweet
127.0.0.1 localhost
::1 localhost