You can use htaccess to make your .html pages parse and execute as if they were php pages if thats what you mean.
I think mad4 is onto the right path if thats what smallbusinessboost is intending. In your .htaccess something like this would rewrite all .html requests on the fly. RewriteEngine On RewriteRule ^(.*)\.html$ /$1.php Code (markup): I think, I know their's better regexps because (.*) is pretty ambiguous. Maybe RewriteEngine On RewriteRule ^([^.]+)\.html$ /$1.php Code (markup): But my Regular Expressions are escaping me. I don't know if those will work. Mike
why you dont use apache AddType application/x-httpd-php .php .phtml .php3 .html In this way you can write php code in html files ! Best Regards Adrian
I use mambo cms and my site is search engine friendly My .htaccess look like this RewriteEngine On # Uncomment following line if your webserver's URL # is not directly related to physical file paths. # Update YourMamboDirectory (just / for root) RewriteBase / # # Rules # RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*) index.php Code (markup):