SoFunction
Updated on 2025-04-04

Solve the issue of handling OPTIONS requests in Laravel

As mentioned earlier, we can use middleware to handle OPTIONS requests, and recently we have found a simple solution.

Define a route in the routing file and match the corresponding route through regularity.

Route::options('/{all}', function(Request $request) {
  $origin = $request->header('ORIGIN', '*');
  header("Access-Control-Allow-Origin: $origin");
  header("Access-Control-Allow-Credentials: true");
  header('Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE');
  header('Access-Control-Allow-Headers: Origin, Access-Control-Request-Headers, SERVER_NAME, Access-Control-Allow-Headers, cache-control, token, X-Requested-With, Content-Type, Accept, Connection, User-Agent, Cookie');
})->where(['all' => '([a-zA-Z0-9-]|/)+']);

This way, no middleware is needed, and no additional operations are needed.

The above article solves the problem of handling OPTIONS requests in Laravel is all the content I share with you. I hope you can give you a reference and I hope you can support me more.