.htaccess Footer

joshua.blease72

New Member
Messages
19
Reaction score
0
Points
0
Does anyone know how to add a footer to my webpages using .htaccess ? I've tried a couple of ways from google but they all return an internal server error.

Thanks, Josh.
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Moved to programming help.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
What did you try that didn't work?

php_value directives will cause 500 errors (ie they are not supported here)

You could use mod_rewrite to change mypage.html to addfooter.php?page=mypage.html and use PHP to insert the footer OR change mypage.html to mypage.php and have all your files add a footer.
 
Top