Forum Moderators: not2easy
AddType application/x-httpd-php .html
Or, if you don't want to use PHP you could use Apache's Server Side Includes.
Put your navigation in a separate file, save it as something like 'navigation.html' and put this tag in your page:
<!--#include virtual="navigation.html" -->
You may need an .htaccess again to make this work without changing your page extension to .shtml.
On Apache 1.3 you would need this line:
AddHandler server-parsed .html
and on Apache 2:
AddOutputFilter INCLUDES .html