I've just set up route 53 on AWS to link my server (ubuntu) to a godaddy domain name. I used to be able to access my /var/www/mmf folder from the elastic IP address given by aws (54.214.246.243/mmf) and since I've set up the route 53 service and linked it to the directory of my website, I can only access it through the domain address (www.meetmyfriends.co).
My problem is that I have other directories on this same server I would like to access, I usually did 54.214.246.243/myotherdirectory to access other projects that didn't need any domain name. And now I can't.
Why is this happening ? How can I fix this ?
I want to be able to access my www server folder from my ip address 54.214.246.243 and the mmf sub directory (my website) from the web address in the same time. So i can still access the other projects on development I have on this server. How can I set that up.
Thanks for your help :)
EDIT:
Maybe is this due to my httpd-vhosts.conf file:
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.meetmyfriends.co
DocumentRoot /var/www/mmf
</VirtualHost>
<VirtualHost *:80>
ServerName meetmyfriends.co
DocumentRoot /var/www/mmf
</VirtualHost>