我最近在 Apache 上安装了 Cockpit CMS。在其 UI 上进行一些自定义。一切都很好,直到我更改了它的标题图标,然后每当我尝试在集合、表单、单例中保存某些内容,甚至添加条目时,它都会显示“找不到文件”。我被困在里面了。
我没有在其配置和模块上触及任何单个代码。任何帮助深表感谢。
这是我的 cockpit.conf:
<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/cockpit
ServerName [My Server's IP]
ServerAlias www.example.com
<Directory /var/www/html/cockpit/>
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/html/cockpit/>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) index.php [PT,L]
</Directory>