From 714a815a96e4f634301c7c670846bf0007154156 Mon Sep 17 00:00:00 2001 From: An Phan Date: Tue, 10 Feb 2015 21:40:22 +0800 Subject: [PATCH] Replaced h5bp.com reference with Apache Server Config, following #14 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3beb0fd..929f854 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ These files may be left by some text/html editors (like Vi/Vim) and pose a great Satisfy All ``` -[Source](http://h5bp.com) +[Source](https://github.com/h5bp/server-configs-apache) ### Disable Directory Browsing ``` apacheconf @@ -232,12 +232,12 @@ Require valid-user ``` -[Source](http://h5bp.com) +[Source](https://github.com/h5bp/server-configs-apache) ### Set Expires Headers _Expires headers_ tell the browser whether they should request a specific file from the server or just grab it from the cache. It is advisable to set static content's expires headers to something far in the future. -If you don't control versioning with filename-based cache busting, consider lowering the cache time for resources like CSS and JS to something like 1 week. [Source](http://h5bp.com) +If you don't control versioning with filename-based cache busting, consider lowering the cache time for resources like CSS and JS to something like 1 week. [Source](https://github.com/h5bp/server-configs-apache) ``` apacheconf ExpiresActive on @@ -345,7 +345,7 @@ AddDefaultCharset utf-8 # Force UTF-8 for a number of file formats AddCharset utf-8 .atom .css .js .json .rss .vtt .xml ``` -[Source](http://h5bp.com) +[Source](https://github.com/h5bp/server-configs-apache) ### Switch to Another PHP Version If you're on a shared host, chances are there are more than one version of PHP installed, and sometimes you want a specific version for your website. For example, [Laravel](https://github.com/laravel/laravel) requires PHP >= 5.4. The following snippet should switch the PHP version for you.