I have been using virtual hosts on my Mac with MAMP, which has worked up until now. I have 2 working virtual hosts that i created in the same manner, which still work, but for some reason I am unable to create any new virtual hosts. When i attempt to go to a newly crated virtual host in my browser it generates a 404 Not Found error. The only thing i can think of possibly after i updated OSX to Mavericks, but i'm not sure what that would have done, or why the old virtual hosts still work.
See excerpt below from vhosts.conf file. So, franklin.dev works, jamiepjones.dev works, but sheilahixson.dev does not.
<VirtualHost *:80>
DocumentRoot "/Users/jamiejones/Sites/franklin"
ServerName franklin.dev
ErrorLog "logs/franlkin.dev-error_log"
CustomLog "logs/franklin.dev-access_log" common
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/Users/jamiejones/Sites/jamiepjones-wp"
ServerName jamiepjones.dev
ErrorLog "logs/jamiepjones.dev-error_log"
CustomLog "logs/jamiepjones.dev-access_log" common
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/Users/jamiejones/Sites/sheilahixson”
ServerName sheilahixson.dev
ServerAlias www.sheilahixson.dev
ErrorLog "logs/sheilahixson.dev-error_log"
CustomLog "logs/sheilahixson.dev-access_log" common
</VirtualHost>
and hosts file:
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
127.0.0.1 jamies-MacBook-Pro.Belkin # MAMP PRO - Do NOT remove this entry!
127.0.0.1 hixson # MAMP PRO - Do NOT remove this entry!
127.0.0.1 franklin.dev
127.0.0.1 jamiepjones.dev
127.0.0.1 sheilahixson.dev
Please help!