我得到404错误后,重新启动我vps主机wordpress
使用openlitespeed
。
所有版本都是最新的使用数字海洋市场(今天刚刚建立)。我的VPS运行CyberPanel(托管控制面板为LiteSpeed),所以多个网站可以托管在我的VPS。
到目前为止我努力:
1.使用sudo service lsws restart
重新启动litespeed
1.更改.htacess
(在WordPress /home/example.com/public_html
上),如下所示:
RewriteEngine On
RewriteBase /
RewriteRule ^/index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
但以上步骤无法解决404错误
现在,即使访问文件test.txt
(如example.com/test.txt
)给予错误403 /禁止(即使使用chmod 777)。
有什么想法吗?
提前感谢您...
1条答案
按热度按时间k97glaaz1#
只是想在这里更新结果,以防有人感兴趣。
/home/example.com/public_html文件夹的权限不正确,这就是为什么Web服务器没有读取该文件的权限。修复文件夹权限后,即使服务器重新启动,也不会再出现404问题。