Forum Moderators: open
Server Side Includes vs. SSL?
HTTPS is the secure version of HTTP. If you have a folder named "httpsdocs" I would guess it was intended to hold documents or web pages that should only be served via HTTPS.
The name of the folder, however, does not make it so. The links pointing to the documents need to include "https" as the protocol. The folder should probably also be set so that it will NOT honor requests over standard HTTP.
".shtml" is the extension commonly used to indicate that the file has some INCLUDE lines in it. This tells the server that it needs to parse the file and replace the include lines with the files they point to before sending it off to the browser. There is some overhead in doing this and that is why files with a standard "html" extension are not automatically scanned.
[edit]I should have included: documents with any extension can be served over HTTPS.[/edit]