私もこの問題を抱えていました!
私の場合、それは許可の問題でした。
cat /etc/apache2/logs/error_log | grep static
そして
tail -f / etc / apache2 / logs / error_log | 静的grep
おもしろい情報を教えてくれました(ログファイルの名前は違うかもしれません)
最初に見た:
[Wed Oct 30 12:19:34.287356 2019] [core:crit] [pid 27633] (13)Permission denied: [client 24.48.87.7:16680] AH00529: /home/[datuser]/public_html/pub/static/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/home/[datuser]/public_html/pub/static/' is executable
pub / staticフォルダーが実行可能ではないことがわかりました。それから私はそれを修正した後
[Wed Oct 30 12:22:46.490759 2019] [:error] [pid 27290] [client ipremoved] SoftException in Application.cpp:267: File "/home/[datuser]/public_html/pub/static.php" is writeable by group, referer: [url removed]
[Wed Oct 30 12:22:46.490961 2019] [core:error] [pid 27290] [client ipremoved] End of script output before headers: static.php, referer: [url removed]
私たちのサーバーApacheでは、何らかの理由でグループごとに書き込み可能なファイルを提供できません。だから、pubの下のすべてのファイルに644を設定する必要があり、最終的に私のシンボリックリンクが作成され始めました!!