301 Moved Permanently on post ajax requests in laravel

6.3k Views Asked by At

I upload a laravel project on server; When I run all the ajax post request request run like this:

Request URL: http://example.com/user/register/
Request Method: POST
Status Code: 301 Moved Permanently

Then this run:

Request URL: http://example.com/user/register
Request Method: GET
Status Code: 500 Internal Server Error (from disk cache)

Post method change to get method and return error; How can I solve this?!

I try php artisan cache:clear php artisan config:clear php artisan view:clear But also return error

3

There are 3 best solutions below

8
On BEST ANSWER

I found the answer. put here to help the others. It take so time of me. The problem was so simple. I just remove the backslash from end of url of each post actions.

For example /user/register/ must change to /user/register :|

And cache of the browser must be clear for each page.

0
On

In my case for uploading file, my route was same as public directory -> Route::POST('upload/data', [UploadDataController::class, 'upload'])->name('uploadData');

On my public folder: public/upload/data

So I changed the route as upload/uploadData and its perfectly fine!

1
On

In my case, It was redirecting from http to https make sure your end domain with the exact domain headers.

Check if your domain is placed on http or on https and match it with the source of the request like with POSTMAN request or Browser Request.