i use httpd.conf with mod_rewrite to remove file extensions from webpages....
the code i use in httpd.conf is
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.html [NC,L]
</IfModule>
this does not work on my external server with .htaccess file, and i have no access to the httpd.conf file....
any ideas how to change the commands so that i can remove all .html in urls with a .htaccess instead........
thanks in advance :D