I need to add a script before the </body> tag, so instead of modifying all the pages, I was wondering if I could configure the server to add some HTML before that tag for every HTML document being served?
|
2
|
|
||||||||
|
|
|
If you have PHP installed on your server, you can set up the
|
||
|
|
|
|
The most natural answer to your problem would be to use a server-side processing language such as PHP, CGI, etc. Those platforms give a lot more than just server-side includes. Speaking of which, if including something in an HTML page is just really what you need, you might be looking for Server Side Includes. |
||
|
|
|
Apache can handle that using mod_layout Here's a relevant article: Advanced Apache Headers/Footers |
||
|
|
