Server Side Includes

SSI Instructions

Server Side Includes are HTML comments that direct the server to dynamically generate data and place it on a web page. SSI can be used to ensure that common info stays the same on all pages throughout your site.

The use of SSI can also save time when making site-wide changes to those components, since changes only need to be made in one place instead of to each page. SSI is commonly used for headers (top of web page, logo, etc), footers (copyrights) and navigation.

Example 1: Copyright

  1. Create a file called copyright.shtml
    In it, put your copyright notice in html like this:
    ©2016 Your Site Name. All rights reserved.
  2. Do not include the , and tags on this page.
  3. Save the file in the root (main) directory of your web site.
  4. Open the page on which the footer is to appear and insert the following HTML comment:
  5. Upload both files to your browser (or open them in a WYSISYG program) to make sure your SSI works. If the copyright notice appears on the page with the include statement, it worked!



Example 2: Navigation

  1. Create an html file with the following text:
    Home | Contact Us | Products | Orders
  2. After typing the desired text, create the links for each word or phrase like this:
    Home | Contact Us | Products | Orders
  3. Save the file as navigation.shtml
  4. Next, open the pages in which the navigation is to appear.
  5. Insert the following HTML comment:
  6. Save the file. Upload your files to test.


To update your pages, simply open the SSI page such as navigation.shtml above and make your changes. Save your file. All pages with the corresponding include statement will be updated.

Notes:

  • Your website host must have SSI capability for SSI to work.
  • When creating SSI files for placement on your pages, you may want to add a single-cell table at 100% where you want your SSI to appear. Then place the SSI coding within the table's cell.
  • You can use either #virtual or #file includes. The "file" attribute is a file path, relative to the current directory. It cannot be an absolute file path (starting with /), nor can it contain ../ as part of that path. The "virtual" attribute is probably more useful, and should specify a URL relative to the page it's on. It can start with a /, but must be on the same server as the file being served.
  • SSI is formatted like an HTML comment, so if you don't have SSI correctly enabled, the browser will ignore it, but it will still be visible in the HTML source. If you have SSI correctly configured, the directive will be replaced with its results. If it is configured correctly for SSI, but the include html is wrong or references an unknown file, an error will show where the SSI file should be.
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Using Your Diskspace Wisely

Make Good Use of Your DiskspaceWe all tend to take our disk space for granted. But when it's...

Planning Your Web Site

Are You Ready?Before creating a web site for your business, spend some time determining if you're...

Email Link or Form?

There are two main ways websites allow you to contact the site owner.1. Email form - requires...

Custom Favorites Icon

Your Bookmark IconWhenever someone bookmarks a website (using a favicon-compatible browser), a...

Adding A Video To Your Website

The easiest way to put watchable video on your site may be to upload it to YouTube and then put...

Powered by WHMCompleteSolution