I'm trying to look at Angularjs (going through Code School demo).
When I make changes to the template they are not reflected when refreshing in the browser. I have tried:
hard refreshing (and confirmed code 200 in the apache log)
deleting the browser cache (firefox)
Renaming the file on the server.
Opening in a different browser
However, copying the file to a new name on the server DOES have the changes be reflected.
regular HTML files that do not include the angular library update as normal.
Making a change to the javascript is reflected immediately (e.g. adding an alert('test')).
Is there something fundamental that I am missing here?
EDIT - Environment Details Running on a Centos6.6 virtual box (Virtualbox) on a mac OS 10.10. Document room is /var/www/dev which is a symbolic link to /mnt/dev which I have mounted via the VirtualBox tools so I can edit the file directly on my mac the VM config Listen 10001
NameVirtualHost *:10001
<VirtualHost *:10001>
DocumentRoot /var/www/dev
<Directory />
Options +FollowSymLinks
AllowOverride None
</Directory>
</VirtualHost>