Hello I am trying to make this work on a Godaddy server but it keeps getting a 'too many redirects' 310 error. The thing is it works fine on a Bluehost server so I feel we aren't to far off. What we want to see happen is when someone goes to coolsite.com/about.html/ it gets changed to www.coolsite.com/about
====redirects to www====
rewriteengine on
rewritecond %{HTTP_HOST} ^coolsite.com$
rewriterule ^$ "http\:\/\/www\.coolsite\.com\/" [R=301,L]
====removes and trailing slashs====
rewriterule ^(.+)/$ http://www.coolsite.com/$1 [R=301,NC]
====hides 'index.html' but still serves it====
rewritecond %{THE_REQUEST} \ /(.+/)?index(\.html)?(\?.*)?\ [NC]
rewriterule ^(.+/)?index(\.html)?$ /%1 [R=301,L]
****removes '.html' from a link even if typed in(I Think)****
rewritecond %{ENV:REDIRECT_STATUS} ^$
rewriterule ^(.+)\.html$ /$1 [R=301,L]
====serves the '.html' version of the file(I Think)===
rewritecond %{SCRIPT_FILENAME}.html -f
rewriterule [^/]$ %{REQUEST_URI}.html [QSA,L]
When I remove the one that I *'ed it all works except it still serves with 'html' which we are trying to overcome.
Any ideas?