I study JavaScript and Html 5 online and execute the codes I've learned on localhost. Recently I learned manifest attribute in html tag which is a new feature in Html 5. Then I made my own .appcache file and the problem started. Even though I'm connected to internet, the cache that's stored in my computer is being used. Here is the index.php file(But no php in code):
<html manifest="./cevrimdisi.appcache"> <head> <meta charset="UTF-8"> <title>BAŞLIK</title> </head> <body> <font id="demo">Kutay</font> <script> document.getElementById("demo").style.color="blue"; </script> </body> </html> cevrimdisi.appcache:
CACHE MANIFEST # 09/09/2013 CACHE: index.php FALLBACK: cevrimdisi.html NETWORK: * .htaccess
AddType text/cache-manifest .appcache