如何在 Plesk 中将页面设置为默认页面。例如,当有人请求 www.mysite.com 时,它会自动打开 www.mysite.com/Index.html
谢谢
找到它,您首先需要在 Plesk Panael 中转到您的主页,选择虚拟目录,然后选择您的域,然后选择目录属性
或者使用 Web.Config 但推荐的方法是从虚拟目录中使用
<configuration>
<system.webServer>
<defaultDocument enabled="true">
<files>
<add value="home.html" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
Apache 通常设置为 index.php 或 index.html
您可以在 linux 服务器上使用 .htaccess 并在 Plesk 网站中设置默认页面
DirectoryIndex index.php index.html site-down.php
这种通过 .htaccess 在 Linux 文件中完成,在 Windows 的 IIS 中进行 URL 重写更改。
喜欢
.htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule ^$ http://example.com/index.php [L,R=301]
我希望这有帮助。
如果网站正在打开 index.html(显示网站托管公司提供的默认页面),并且您希望默认页面由 index.php 控制,请删除(或重命名 index.html),它会自动拾取 index.php作为启动文件。至少它是如何与 Peer 1 一起工作的。