diff --git a/index.html b/index.html index 7eeeea7..38371c2 100644 --- a/index.html +++ b/index.html @@ -77,31 +77,9 @@
-
-//remove cache related header
-//file : rule_remove_cache_header.js
-//rule : anyproxy --rule rule_remove_cache_header.js
-module.exports = {
- replaceRequestOption : function(req,option){
- var newOption = option;
- delete newOption.headers['if-modified-since'];
-
- return newOption;
- }
-};
-
-
-
-
//append "hello world" to all web pages
@@ -123,6 +101,28 @@ module.exports = {
+
+
+//remove cache related header
+//file : rule_remove_cache_header.js
+//run : anyproxy --rule rule_remove_cache_header.js
+module.exports = {
+ replaceRequestOption : function(req,option){
+ var newOption = option;
+ delete newOption.headers['if-modified-since'];
+
+ return newOption;
+ }
+};
+
+
+
+