22 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
85
views
Nginx proxy_pass resulting in 308 loops when delegating to external site
I've been running Nginx inside a container and have been having issues with proxy_pass producing multiple 308 redirections and the page not loading as a result. I've searched other posts with similar ...
2
votes
1
answer
333
views
Apache 308 redirects change the protocal from https to http
So I recently updated my .htaccess to replicate the directory slash directive with a 308 instead of the 301 Apache normally uses, so that the browser repeats the same request instead of changing it to ...
2
votes
1
answer
881
views
Nextjs 14 App Router How to make 301 Redirect
I have slugs of products in my project. And the slugs are dynamic and can be updated. When it is updated, I want to redirect it to the new one with 301, but I could only redirect it with 308. The code ...
1
vote
1
answer
261
views
Quarkus Websocket Client Handshake 308 - Upgrade config?
I'm using Quarkus coming back at it, after some years and trying to configure for the first time a WS client, but I'm struggling to find a solution.
Related Dependencies in BoM version 3.7.1
io....
1
vote
0
answers
238
views
Permanent Redirect/ status code 308 during signup in flutter app
I am trying to send a post request from my flutter app to a signup endpoint of the next.js server. It is not working properly. It is giving me 308 status code or the permanent redirect or Redirecting.....
7
votes
2
answers
9k
views
How to remove permanent redirect in Next.js ? (Response 308)
So it seem like in next.config.js our previous devs coded some pernament redirects like so:
{
source: '/some-path',
destination: 'https://storage.googleapis.com/company/some-path.html',
...
3
votes
2
answers
1k
views
Nextjs - change permanent redirect status code from 308 to 301
I'm using next.config in order to redirect non www requests.
redirects: async () => [
{
source: '/:path*',
has: [{ type: 'host', value: 'example.com' }],
destination: 'https://www.example....
0
votes
0
answers
2k
views
Kubernetes (AKS) : nginx ingress error 308 Permanent Redirect error. Private nginx Ingress controller
Over all description of what I am doing: I am using a private nginx ingress controller in AKS (Azure Kubernetes Service) and setting up Secrets Store CSI Driver to enable NGINX Ingress Controller with ...
0
votes
2
answers
956
views
RestAPI C# and Python: Can't understand or solve status code 308
I'm trying to learn RestApis and have reached a problem I cannot find the answer to.
In a Python script I run the RestService with the help of the Flask RestApi package.
All endpoints are GET and I ...
0
votes
1
answer
2k
views
Nginx Ingress Controller trailling slash with HTTPS redirect
Nginx Ingress Controller trailling slash with HTTPS redirect
I'm trying to redirect requests from HTTP to HTTPS using an Ingress with Nginx Ingress Controller. My app is written in Django v3.0.7, my ...
0
votes
0
answers
65
views
Permanent redirection keeps hitting effective URL everytime
I have created two Rest API's in the backend (same webservice), one for the effective URL and other for the Redirected URL. I'm doing a 308 redirection here when user hits effective URL.
Scenario's
...
1
vote
0
answers
367
views
OpenShift route to return a 308 Permanent Redirect
If I set an OpenShift route with insecureEdgeTerminationPolicy to Redirect.
Client will be able to redirect http to https.
They will receive a 302 Found (temporary redirection).
Does route offer the ...
0
votes
0
answers
814
views
The GET Request is successful through PostMan but is giving a 308 Permanent Redirect through Spring RestTemplate Exchange Method Call
The GET Request contains a JSON Payload similar to below :
{
"customeId" : "A123",
"Status" : "Assigned",
"StartDate" : "2020年07月18日",
"...
0
votes
1
answer
93
views
com.algorithmia.APIException: 308 unexpected API response
I'm using algorithmia, a repository of trained ML functions on the Internet. Few weeks ago, an issue showed up, and since then, haven't been able to figure out what's going on. I'm executing this code,...
2
votes
0
answers
239
views
Google App Engine respond with the code 308
Problem
1.I have a sns service which is running on Google App Engine
2.The sns service is using go to run as the back ending side
3.The sns service is using a crob job to request Api A
4.The Api ...