Add Trailing Slash to the End of the URL with .htaccess Rewrite Rules
For a website that has URLs that end with a slash (/), it’s a good practice to ensure that all url links been parsed by the web server ended with trailing slash, even if visitors forget to enter the ending slash. This avoid visitors been served with 404 Page Not Found or Page Cannot be Displayed error as some web servers treat links without trailing slash as a file name instead of directory, and thus unable to locate the documents. It also eliminates the possibility that both pages with same content, one with slash at the end and another without, been viewed by search engines as duplicate content.
As an example, all hits to http://www.mydigitallife.info/contact should be redirect to http://www.mydigitallife.info/contact/.
Most web server, including the popular Apache HTTPD web server supports mod_rewrite module where rules can be set in .htaccess file in order to redirect to add trailing slash to the URLs that does not already have one.
The following code can be put in .htaccess to redirect URL without trailing slash to URL with trailing slash:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]
or
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !\..+$
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) http://www.mydigitallife.info/$1/ [R=301,L]
or
RewriteEngine On
RewriteBase /
RewriteRule ^([a-zA-Z0-9]+)/$ /$1 [L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([a-zA-Z0-9]+)
RewriteRule ^([a-zA-Z0-9]+)$ /%1/? [R=301,L]
In you’re using CMS or blog such as Wordpress that allows custom URL structure for permalinks, especially for search engine optimization (SEO), the above code should come before the block of rewrite conditions and rules for URL customization for the CMS or blog platform.
Brief explaination of the rewrite code to add trailing slash to URL
RewriteEngine On – This line enables the runtime rewriting engine based on mod_rewrite module of Apache.
RewriteBase / – This line sets the current page root directory as base URL for per-directory rewrites.
RewriteCond %{REQUEST_FILENAME} !-f – This line excludes all URLs pointing to existed files from been added with trailing slash again. Directories cannot be excluded as this would exclude the rewrite behavior for existing directories.
RewriteCond %{REQUEST_URI} !index.php – This line is optional, and will excludes a sample URL (in this case, index.php) that users do not want it to be rewritten. Remove this line if not necessary.
RewriteCond %{REQUEST_URI} !\..+$ – Specify that the URL does not contain any . (dot) to exclude reference to file.
RewriteCond %{REQUEST_URI} !(.*)/$ – This line determines which URL doesn’t contain a trailing slash
RewriteRule ^(.*)$ http://www.domain.com/$1/ [L,R=301] – This line process URL without trailing slash that has passed conditions set above, by appending a trailing slash and then redirect with 301 or permanent redirect status to the new URL. L mean this is the last line to process and the rewrite process can be terminated. Remember to replace the www.domain.com with your own domain name.
Brief explaination for second set of rewrite rules and rule conditions
RewriteRule ^([a-zA-Z0-9]+)/$ /$1 [L] – This line terminates the trailing slash appending rewrite process if the URL already contains trailing slash.
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([a-zA-Z0-9]+) – This line determines request that does not ends with trailing slash.
RewriteRule ^([a-zA-Z0-9]+)$ /%1/? [R=301,L] – This line append a slash to the end of URI and perform a 301 permanent redirect to the new URL with trailing slash, and terminate the rewrite block.
Related Articles
- Redirect or Rewrite to Remove Double or Multiple Slashes (//) in URL
- SEO Friendly Rewrite Method to Move Website URL From Subdirectory to Root Parent Folder
- Nintendo Plans on Price Slash for Wii to Compete Against Sony’s PS3 and Microsoft’s XBox
- Microsoft Confirmed Price Slash on Xbox Consoles to Stay Competitively in Gaming Segment
- AUO Plans to Slash e-Book Pricing to $100 by 2011
- D-Link Announced Price Slash on Entry Level 802.11n Wireless Router
- Remove or Trim First or Last Few Characters in MySQL Database with SQL
- WordPress Permalinks Does Not Work in xampp Setup
- PHP Scripts open_basedir Restriction in Effect Error
- Unable to Logon to Win2003 Domain AD Due to Windows Cannot Connect to the Domain Error










































September 1st, 2009 00:47
Thanx. Worked perfectly for me. Even wordpress uses the same code in .htaccess.
August 19th, 2009 07:07
Couldn’t get the second option to work for me either. Getting a 500 error.
January 19th, 2009 19:50
I’d been using that slash alot on one of my website. Most of them had been indexed by search engine successfully, but four of them return a 404 not found error based on Google Webmaster report, weird.
December 12th, 2008 12:53
I have tried both methods and they do work but not with the other statement that I have. I was wondering exactly what Killswitch meant when he says “play with it a bit.” I tried rearranging the order and that doesn’t seem to help, I’m looking for a quick solution here.
December 6th, 2008 10:37
This was extremely helpful, I have been trying for the longest time to figure out how to end a site.com/somthing to site.com/something/ with no luck. Had to play with it a bit due to the rules I already have, but had it working in about 5 mins.
October 31st, 2008 03:07
dlvrq rjdkq bfuwo jnlx
July 26th, 2008 05:19
[...] ÄÃm predÃdete aj problému Ä.2. Pre htaccess som naÅ¡iel pekný, ale anglický Älánok o tom, how to add trailing slash to the end of the URL. Možnosti máte [...]