htaccess.txt

来自「主要用于监控网络流量并动态产生可视化结果」· 文本 代码 · 共 37 行

TXT
37
字号
############################################################# Example .htaccess for use with apache-1.2 and mod_expire.   # (mod_expire come with apache-1.2 but you have to explicitly # activate it when compiling the httpd ...)##############################################################<Files "*-day.gif">ExpiresActive On                  # enable expirations# five minutesExpiresDefault M300</Files><Files "*-week.gif">ExpiresActive On          ExpiresDefault M1800          </Files><Files "*-month.gif">ExpiresActive On          ExpiresDefault M7200        </Files><Files "*-year.gif">ExpiresActive On          ExpiresDefault M86400    </Files><Files "*.html">ExpiresActive On          ExpiresDefault M300</Files># index.html is not automatically generated<Files "index.html">ExpiresActive Off  </Files>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?