hosting

You are currently browsing articles tagged hosting.

In this tutorial, I’m going to write about a number of things that will be useful to you if you have your own website hosting. This article is geared for beginners, and requires no prerequisites apart from some common sense! Now, I host nointrigue.com on a shared Linux server with Bluehost, which means that my website shares a physical computer with a number of other users. This setup is fairly common, so I’ll be writing with an assumption that this is the kind of arrangement that you have. I’ll cover some basic, but useful, shell commands to make your life easier, and explain how to install additional software on your host.

Read the rest of this entry »

Tags: , , , , , , , , , , ,

If you want to use Apache’s automatic index functionality for directories, yet have your own custom messages on those index pages, here’s how you do it. Simply add to the .htaccess file for the directory (create it if it doesn’t already exist) the following line:

HeaderName HEADER.html

where HEADER.html is the name of a file that contains the HTML markup that you want to include at the top of the page. To add content to the bottom of the directory listing, use:

ReadmeName FOOTER.html

again, replacing FOOTER.html with the file that contains your desired markup.

There are technical details I won’t go into here; read them in the Apache documentation. I’ve implemented it here and I intend to do so for the directories on my site soon.

Tags: , ,