Disguise File Extensions
Using htaccess, you can disguise the actual filetype, either for security or for to make your pages more user friendly.
AddType application/x-httpd-php .html
AddType application/x-httpd-cgi .php
AddType application/x-httpd-cgi .php
In the above example, we have disguised any .php file with an .html extension and any .cgi files with a .php extension!




