Big Bill wrote:
> You mean should you have something like this in your .htaccess file?
>
> <IfModule mod_rewrite.c>
> RewriteEngine On
> RewriteBase /
> RewriteCond %{HTTP_HOST} !^www\.example\.com$
> RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
> RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(([^/]+/)*)index\.html\ HTTP/
> RewriteRule index\.html$ http://www.example.com/%1 [R=301,L]
> </IfModule>
>
> Probably, yes. I'll let Bokma pick that one apart.
Thanks. I'll try that. It's a Dreamweaver template, so I'm not sure about
the best way to convert the links across a 300 page site without breaking
the template. I would just find-replace all /index.html to / in the
directory, but I'm not sure what that would do to the Dreamweaver template.