.htaccess tutorial

htaccess Elite


How to remove double .. like index..html to index.html

Ask your mod_rewrite and Redirection questions here, and get answers!

How to remove double .. like index..html to index.html

New postby ewaydesigns » 17 Feb 2009 12:41

How do you correct this common typo by users?
ewaydesigns
 
Posts: 2
Joined: 17 Feb 2009 12:34

Re: How to remove double .. like index..html to index.html

New postby ewaydesigns » 18 Feb 2009 13:34

I have done it myself.

The correct answer was:

Code: Select all
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*)\.\.(.*) http://www.mywebsite.co.uk/$1\.$2 [R=301,L]
ewaydesigns
 
Posts: 2
Joined: 17 Feb 2009 12:34


Return to Redirect or Rewrite Questions