i want to enable my users to drop the “.html” suffix.
so if they were to enter:
[quote]http://www.mydomain.com/myantp123
[/quote]
i’d want them taken to:
[quote]http://www.mydomain.com/myantp123.html
[/quote]
and of course i’d want that to generalize to any file.
it looks like i do this with mod_rewrite in my .htaccess file?
currently (and this must be the default), it looks like this:
[quote]
Order Allow,Deny
Deny from All
[/quote]
some googling indicates this might work?
[quote]RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule (.*) $1.html [L]
[/quote]
i’m not sure what the “l” flag does?
but will this work to do what i want?
thanks so much…
-bowerbird