Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
80 views

.NET has [FromQuery] to get query parameters on the path. For instance my/foo?bar=1 maps to: public class MyController : Controller { [HttpGet] public async Task<Whatever> Foo([FromQuery]...
Keith's user avatar
  • 157k
0 votes
2 answers
70 views

My folders structure: src/routes/[lang]/ ├── +layout.svelte ├── +page.svelte ├── +page.server.ts └── [category]/ ├── +page.svelte └── +page.server.ts The problem is that if I am ...
Durrasell's user avatar
-1 votes
1 answer
101 views

I’m running into an issue with my static site, and I could really use some help. Here’s the situation: Project Structure: My project is a simple HTML, CSS, and JS site with the following structure: /...
Mohammad Mahadi Hassan's user avatar
1 vote
2 answers
75 views

I have a bunch of AppEngine services in a GCP project. Let's call them red-service, green-service and default, with the project being myproject. According to the docs, the standard way to reach a ...
Simone Mariottini's user avatar
0 votes
0 answers
42 views

The official documentation has provided a way to handle the "slash" symbol in product names, by using a PRODUCT_NORMALIZER. https://sap.github.io/spartacus-docs/adding-and-customizing-routes/...
Terry Windwalker's user avatar
1 vote
0 answers
51 views

After doing research, I've learned that having 'underscore' in your url path can affect google search results, from this google recommended URL structure: Google recommended URL structure I initially ...
John Sall's user avatar
  • 1,173
2 votes
0 answers
230 views

Bun uses wrong path for CSS chunk files. How to fix path if frontend is in different directory than server? I just started using bun to deploy a fullstack Dev Server while following bun.sh/docs ...
redcast's user avatar
  • 21
0 votes
1 answer
67 views

I just started learning Laravel, and I faced an issue. I made two view files. The first one is home.blade.php and the second one is welcome.blade.php. In the routes folder, web.php, I used the Route::...
Muhammad Shehroz's user avatar
1 vote
1 answer
43 views

I'm working on a wiki project with django. I'm trying to render 'add.html' with the view add, but it sends me to 404 instead. All the other views are working fine. How should I fix add? views.py from ...
Alex's user avatar
  • 23
0 votes
1 answer
93 views

Problem: In a Next.js application hosted on Azure App Service, accessing routes directly (e.g., /vehicle-details) results in a 404 Not Found error. However, navigating to these same routes via ...
Gabriel Oliveira Menezes's user avatar
0 votes
1 answer
286 views

On navigation, even though the path of a Route is added to the url in the search bar, the component of the Route is not rendered. It only renders on refreshing the page. My Header has buttons which ...
newProgrammer12's user avatar
1 vote
2 answers
63 views

I would like to be able to display different components based on the device the application is being viewed on. I am currently using the below to change the component and it works. The issue is that ...
Steven Price's user avatar
1 vote
1 answer
243 views

Everything's on GCP Various tools and applications are accessed via Cloud Run instances These should all be protected by IAP + IAM, so a Load Balancer's set up w/ appropriate backend configuration I'd ...
AmagicalFishy's user avatar
0 votes
1 answer
47 views

I am very new to routing in ASP.NET Core. The system I am prototyping has strings with associated names like: /dev/accounting/people = "people string" /test/it/documents = "some it ...
Kerry Thomas's user avatar
0 votes
0 answers
505 views

parallel routes I've been trying to navigate to a section of my project's home page. I have 3 parallel routes in the home page and a navigation bar on top that consists of links to other pages and ...
fereshteh namazi's user avatar
1 vote
1 answer
125 views

I am working on an ASP.NET Core 8 project where I have MVC public section Area -> MVC Admin section Area -> Razor pages Identity area Also I have localization to run application in English and ...
Fakhr Alam's user avatar
0 votes
0 answers
267 views

In StackOverflow, you can access question through two different URL https://stackoverflow.com/questions/:questionId/:slug https://stackoverflow.com/questions/:questionId I am trying to build the ...
TSR's user avatar
  • 21.5k
-1 votes
1 answer
234 views

I put test.html in the routes folder, but both localhost:8000/test and localhost:8000/test.html redirect me to the 404 page. The documentation Routing | Fresh docs doesn't discuss about this. Or is it ...
Ooker's user avatar
  • 3,404
0 votes
0 answers
152 views

I have a Django 4.2.2 application running on Python 3.11. One of the views is as follows: import requests from django.http import HttpResponse def get_captcha(request): response = requests.get( ...
m.piras's user avatar
  • 420
0 votes
2 answers
109 views

How do I omit the Id from the URL? Change from this URL: https://localhost:7002/Product/109 to this instead ====> https://localhost:7002/Product/productName My controller is: [Route("/...
soheila's user avatar
  • 13
1 vote
1 answer
144 views

I am working in an ASP.NET Core project with Razor pages and I am trying to make this URL pattern /{clientName}/Forms/{page} acceptable to route. You should know I'm using Razor Pages NOT MVC. ...
Abdalrhman Alkhulaqi's user avatar
0 votes
1 answer
240 views

I'm configuring Nginx to handle redirects for a domain, but I'm encountering an issue with preserving the URL for a specific path. Here's my scenario: I have a domain, let's say landing.immancrze.us, ...
Himanshu's user avatar
0 votes
1 answer
275 views

I have two rules set up in my ALB: One for routing to Travel APIs. Another is for routing to App APIs, which includes endpoints like auth and user. I want to redirect traffic based on the URL path. ...
Munsif Ali Misri's user avatar
1 vote
0 answers
55 views

I have a problem regarding angular routing not loading my component the first time. Example: When i write "http://localhost:4200" i getting redirected to "http://localhost:4200/ENU"...
Andy Lam's user avatar
0 votes
0 answers
56 views

We have a multi-tenant website (IIS) and want to route some customers to a dedicated version of the website running on a different server. We don't want to change the base URL so that we don't impact ...
Rich Bianco's user avatar
  • 4,172

1
2 3 4 5
103