Simple way to remove .html from page links
I have a simple 5 page site with pages
index.htm
about.htm
contact.htm
events.htm
directions.htm
I want my web addresses to all be http://www.mydomain/about ... for each execpt index just / for that
I've been looking into using rewrites but seem they are all complex and full of things I don't need
Sera

Replies
How about getting rid of the /index.html or /index.php
How about getting rid of the /index.html or /index.php to redirect to domain.com/ dropping the index
short example
<IfModule mod_rewrite.c>RewriteEngine on
RewriteRule ^about$ about.htm [L]
RewriteRule ^contact$ contact.htm [L]
</IfModule>
Post new comment