From 38637cc4938410aca0385da9364f51f5d6aaeeb9 Mon Sep 17 00:00:00 2001 From: An Phan Date: Wed, 8 Apr 2015 12:14:59 +0800 Subject: [PATCH] Some minor rewording --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 54e36b0..43f0ef5 100644 --- a/README.md +++ b/README.md @@ -122,9 +122,7 @@ RewriteRule ^(.*)/$ /$1 [R=301,L] ``` ### Remove Trailing Slash from Arbitrary Paths -This snippet will redirect paths ending in slashes to their non-slash-terminated counterparts (except for actual directories). -E.g., `http://www.example.com/blog/` -> `http://www.example.com/blog` -This is important for SEO, since it is [recommended to have a "canonical URL" for every page](http://overit.com/blog/canonical-urls). +This snippet will redirect paths ending in slashes to their non-slash-terminated counterparts (except for actual directories), e.g. `http://www.example.com/blog/` to `http://www.example.com/blog`. This is important for SEO, since it's [recommended](http://overit.com/blog/canonical-urls) to have a canonical URL for every page. ``` apacheconf RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} (.+)/$