Skip to main content

All Questions

Tagged with
0 votes
1 answer
35 views

Laravel : i have this message "page not found" without any error

//my route Route::get('catalogue/{categorie?}','App\Http\Controllers\CatalogueController@index')->name('catalogue'); //my controller namespace App\Http\Controllers; use Illuminate\Http\Request; ...
user avatar
0 votes
0 answers
31 views

URL reload leading to 404

I'm developing a PWA and i'm experiencing a strange issue: my components load perfectly but if i try to reload it, i end up getting an error message. I need to first go back to a URL without component....
Charles Hergott's user avatar
1 vote
1 answer
42 views

Angular URL has strange quote in the path

I have this strange quote that shows in the path for my angular app: If I enter http://example.com/mywebsite this is what I get as the route http://example.com/mywebsite/" /auth-page There is no ...
Chris's user avatar
  • 108
0 votes
0 answers
22 views

In react how to build urls as "http://localhost:3000/app?path=user.home"

how do I provide ?path=some_path and every time I just want to change the some_path to access home,about,details etc and what is effective and reliable way to get this functionality in React? I'm a ...
Abrar's user avatar
  • 1
0 votes
0 answers
45 views

getting 404 from twilio call url

i have been trying to make a call with the twilio client.calls.create since it has the functionality i needed for my app using the url to play or say something to the called party before they get ...
horla's user avatar
  • 11
0 votes
0 answers
87 views

Not Found The requested URL was not found on the server. please check your spelling and try again

can you guys help.I am trying to display my flask app in the browser but it shows - "Not found the requested URL". Not sure that is wrong, may be you can help. they is no other error in ...
pumpkin-sm's user avatar
0 votes
1 answer
76 views

Getting a relative URL between two absolute URLs

Given two absolute URLs: const from = new URL("https://example.com") const to = new URL("https://example.com/about") is there an easy and reliable way to get a relative url ...
Loris Sigrist's user avatar
0 votes
0 answers
35 views

asp.net 4.7 web api not handling routing correctly when deployed

There is a reason why we had to go with asp.net web api for the time being and not going to look into core at this time. We deployed to our test server and we're getting a strange issue with the ...
James Jackson's user avatar
1 vote
2 answers
93 views

Changing underscores to hyphens in URLs Ruby on Rails

I need to change underscores to hyphens for SEO of our to-do checklist page in Ruby on Rails project. The relevant line in routes.rb file is below: get 'to_do' => 'current_to_do_items#landing', :as ...
dev0717's user avatar
  • 209
1 vote
1 answer
200 views

encodeURIComponent ignored by Expo Router push method

const {name} = foo; // "foo 2%" const encodedName = encodeURIComponent(name); // "foo%20%25" router.push(`/recipe?&name=${encodedName})}` this just literally ...
Marc Fletcher's user avatar
0 votes
0 answers
34 views

Node.js/Express routes redirection

Having this code in my server.js back-end (Node/Express): if (isDevelopment()) { app.use('/r/', (req, res) => res.redirect('http://localhost:3000' + req.originalUrl)); } the problem is ...
Leo Messi's user avatar
  • 5,956
2 votes
0 answers
998 views

Next.js dynamic routes not working in production

I have an web app made in Next.js with a backend made in Node.js. I'm trying to implement dynamic routes on this app, everything is fine in dev mode, but when I build and run in production, the ...
user17791568's user avatar
0 votes
1 answer
225 views

nginx failing to route traffic to endpoints, but working if endpoint is removed

I have a docker compose file and an nginx.conf file. The nginx is able to route the request correctly in the below given case events {} http { upstream weaviate { server weaviate:5555; ...
Anoop Mundachal's user avatar
0 votes
0 answers
262 views

Laravel 10 - How to get full URL by route name from subdomain?

I have resource declared on my routes // admin side Route::resource('helpdesk', TicketController::class); Then I have another route declared as a subdomain for client side Route::domain('sobdomain....
Jay-r Simpron's user avatar
1 vote
0 answers
67 views

How to open dialog and change url withour reload whole page in Nuxtjs

My project using Nuxtjs2 to clone Trello. When I clicked the task, which opened the dialog while simultaneously changing the URL, but it caused the page to reload. Example Url: /project/1 when I ...
Mai Trung Kiên's user avatar

15 30 50 per page
1
2 3 4 5
66