Hello everyone (my first post on this forum) A client currently has an extensive site, based on html littered with numerous text file includes for example: <p> <!--#include virtual="sometextfile.txt"--> </p> Code (markup): The clients current .htaccess file contains: ----- AddHandler server-parsed .html AddHandler server-parsed .txt ----- So... enter PHP. Under this configuration files with a .php extension execute as PHP, however if I include php code in a file with a .html extension they do not. I know the answer for that is usually straightforward. Simply by adding: RemoveHandler .html .htm (if I leave the original in tact, or by starting again with just) AddType application/x-httpd-php5 .php .htm .html , .php, .htm and .html all execute php code contained within. The problem I then face is that the text file includes no longer load. I have tried many variations to the .htaccess with no success. I would like to include php code in .htm and .html files and have them execute, as well as have the text file includes function as they currently do. Can anyone assist with the correct content of the .htaccess file that may enable this. Kind regards, Andrew