i need to know how i would mod_rewrite just the php extension for example from: home.php to: home.html
RewriteEngine On RewriteRule ^(.+)\.html$ $1.php%{QUERY_STRING} Code (markup): Or: AddType application/x-httpd-php .html Code (markup): You would need to change the extensions with the second method though.