• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

.html in url?

L

lennie

Guest
Suddenly this morning one of the sites on my server stopped shopped showing up. The reason. . . when you put the URL in the browser addess bar, it forces the file index.html (http://website.com/index.html). The problem here is that the default page has always been index.shtml. So the index.html didn't exist, so a page not found error appeared.

I have added an index.httml page so the site works but the url still shows in the address window as http://www.findbliss.com/index.html
click here to see what I mean.

The link above goes to :http://www.findbliss.com/ without the index.html.

Help, this is annoying. . .
 
Create an .htaccess file inside the directory.
Inside that file (or opening an existing one), add this line:

DirectoryIndex index.shtml index.html

This will force all browsers to automatically check for the shtml first, then fall back on html if it does not exist.
 
Back
Top