获取 livewire/message/{component} 的 404
Getting 404 for livewire/message/{component}
我有 this 问题已被 运行 php artisan vendor:publish --force -tag=livewire:assets
修复,但是当 Livewire 尝试水合时,post 到 livewire/message/MY_COMPONENT,它仍然得到 404。这在本地使用 php artisan serve
时效果很好,但不适用于 Apache。
迟到的答案,但请检查您是否有 Apache mod_rewrite
enabled
或是否使用 nginx
您添加到 nginx.conf
文件或 sitefile
。
try_files $uri $uri/ /index.php?$args;
我有 this 问题已被 运行 php artisan vendor:publish --force -tag=livewire:assets
修复,但是当 Livewire 尝试水合时,post 到 livewire/message/MY_COMPONENT,它仍然得到 404。这在本地使用 php artisan serve
时效果很好,但不适用于 Apache。
迟到的答案,但请检查您是否有 Apache mod_rewrite
enabled
或是否使用 nginx
您添加到 nginx.conf
文件或 sitefile
。
try_files $uri $uri/ /index.php?$args;