我遇到了一个问题:我刚刚安装了 LAMP,在某个时候我意识到/var/www/html/index.html
缺少了一些东西。
我该如何找回它?如果这个文件对所有机器都一样,有人能告诉我在哪里可以下载它吗?
答案1
index.html
或者index.php
是您网页的起始文件..(通常与或example.com
相同)如果您没有这些文件,请创建一个并开始插入您的 html 行 (...)example.com/index.php
.html
答案2
首先找到要重新安装的包...
lxd: net12-david-favor-zesty # dpkg -S $(which apache2)
apache2-bin: /usr/sbin/apache2
现在强制重新安装该包。
sudo apt-get install --reinstall apache2-bin
这可能有点过头了。但这可能也能起到作用...
sudo dpkg-reconfigure apache2
或者你也可以...
mkdir -p /var/www/html
echo "Default Page" > /var/www/html/index.html
有一个简单的默认页面。