Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在处理一些基于某些操作提交 POST 数据的旧闪存文件。问题是我无法编辑 flash 文件,并且 flash 似乎正在向控制器方法提交 flash 文件当前位于 + index.php 上。
它在这里提交很好,我只是想找到一种方法来捕捉它。我尝试的一切都继续返回“NotFoundHttpException”。
我目前正试图抓住它:
public function postMethod() { }
有什么建议么?
通过您的 htaccess 的路线是否完好无损?你能显示你的路线文件吗?如果路由通过确定,您可以将 RouteWithFlashFile/index.php 与控制器中的方法匹配。像这样的东西:
Route::post('RouteWithFlashFile/index.php', 'MyController@processFlash');
如果这不起作用,您可能不得不考虑重新设计您的 htaccess 以将路线映射到其他东西。我承认这都是猜测,因为我以前从未将 index.php 卡在路线中间。