I want to add text to my htaccess file for keyword tracking purposes (the keyword tracking software I am using does not work for .html pages, only .php, so I need to add the following code:
AddType application/x-httpd-php .html
AddHandler x-httpd-php .html
But I already have some code in my htaccess file (to redirect 404 error pages):
ErrorDocument 404 /custom_page.html
So my question is can I put both codes in, & if so do I need to leave blank lines in between?
Also, will changes made to the htaccess file affect all my add on domains?
Thanks.
AddType application/x-httpd-php .html
AddHandler x-httpd-php .html
But I already have some code in my htaccess file (to redirect 404 error pages):
ErrorDocument 404 /custom_page.html
So my question is can I put both codes in, & if so do I need to leave blank lines in between?
Also, will changes made to the htaccess file affect all my add on domains?
Thanks.
Comment