Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
85 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
1 answer
222 views

I'm using Express 5.1.0 with Node.js v22.19.0, and I want to define a route where the parameter is optional, like /directory or /directory/someFolder. Here's the code I tried: import express from '...
Arman Ihsan's user avatar
0 votes
2 answers
80 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 vote
0 answers
124 views

I am building an ASP.NET Core 8 web application with Blazor pages. The URI I have been assigned for my web application on the production server is not hosted at the root / of the server but at the ...
Tyson Gibby's user avatar
  • 4,969
-1 votes
1 answer
108 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
0 votes
1 answer
140 views

I am using a classic application load balancer with two backends. I want my main backend to handle most requests and my auth backend to handle requests to /auth/*. I've been playing around with ...
David's user avatar
  • 15k
1 vote
2 answers
81 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
1 answer
54 views

Is it possible to have the same route be on different layout groups in SvelteKit. I want to have two different layout groups "/(private)/(app)" and "/(public)/(landing)" that ...
Rey Christian Eustaquio's user avatar
0 votes
0 answers
43 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 votes
1 answer
45 views

Shallow routing works well when clicking on an item Shallow routing throws 404 when typing item url directly Link to Stackblitz that shows the issue src/routes/(news)/+layout.svelte <script lang=&...
PirateApp's user avatar
  • 6,362
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
0 votes
1 answer
350 views

I have a local kind deployment which deploys 3 services, MLflow, Katib and a K8s dashboard. I can deploy these as services and access them via port forwarding to each service and visiting the url in ...
Dana Strong's user avatar
2 votes
0 answers
235 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
0 answers
46 views

We would like to create a web app in .NET 8 that has both wasm and server side pages. The server side pages should be hosted on a different site so that it can be upgraded separately. Home page - wasm ...
user10069751's user avatar
0 votes
1 answer
74 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
0 votes
0 answers
149 views

Can you please help me configure my Flex Gateway path? I have a request {{mu_url}}api/distribution/internal/v1.0/whatsapp/twilio/content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/approvalrequests that I need ...
Anna315's user avatar
  • 31
1 vote
1 answer
47 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
0 answers
44 views

I am implementing the routing in .net Core 8.0 project. First goal is to redirect any .aspx page request to the latest common page. I have placed these combinations to address all possibilities. it is ...
Rajiv Ranjan's user avatar
0 votes
1 answer
100 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
-1 votes
1 answer
360 views

with Astro v 4.8.1 using static generator option in Astro,i.e. output: "static" default defineConfig({ site: "https://abc.xyz", prefetch: true, output: "static" })...
xkeshav's user avatar
  • 54.2k
0 votes
1 answer
298 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
0 votes
0 answers
64 views

So, I am very new to NextJS and I was building an app where a user can sign in and perform CRUD operations relative to the user or even the user himself. The architecture I was following (and I don't ...
Dimitris S's user avatar
1 vote
2 answers
69 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
245 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
1 vote
1 answer
49 views

I want a route structure like this: If I go to the "/sale" route: dashboard feature sale If I go to the "/" route: dashboard That is, if the child route is not activated, ...
Ersin's user avatar
  • 21
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
4 answers
80 views

<div class="mr-3 ml-3 mt-0 mb-4 leave_card_outer" *ngIf="leaveStatus !=null"> <div class="row bg-white p-2"> <div class="col py-3 ...
Dikshith's user avatar
0 votes
0 answers
508 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
0 votes
0 answers
61 views

I'm working on a basic ticketing system, where a user registers, logs in and creates tickets etc. Today I setup a very basic routing system, where my index page uses a switches and cases to redirect ...
Jonathan H's user avatar
1 vote
1 answer
128 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
-1 votes
1 answer
105 views

Ok so i have this project that i am making in Next.js which utilizes App Routing and Crystallize which is GraphQL driven CMS, the folders are in english but i need to integrate internationalization ...
Elias.E's user avatar
0 votes
0 answers
277 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
0 votes
0 answers
53 views

Using Next.js (app router). Called the api (edamam api) , which is rendering the list of items.However inorder to access the item details when I click on the link 'view details', gives 404 page not ...
user17449555's user avatar
-1 votes
1 answer
242 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
1 answer
81 views

In an ASP.NET Core MVC project, how do I change the URL for Razor pages from the default format like http://localhost:5088/Home/Faq, to a specific URL such as http://localhost:5088/freq_asked ...
litlln's user avatar
  • 3
0 votes
0 answers
153 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
1 vote
1 answer
1k views

I got stuck yesterday when trying to get Expo's file-based routing working for a particular route on a project I'm working on. The folder structure looks as follows: index.tsx _layout.tsx +not-found....
A-PSquestions's user avatar
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
0 votes
0 answers
127 views

I have an ASP.NET Core 3.1 MVC app, I have in my startup.cs file the predefined call: app.UseEndpoints(endpoints => endpoints.MapControllerRoute( name: "...
Booji Boy's user avatar
1 vote
1 answer
148 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
2 votes
1 answer
426 views

I've created a reprex for an R Shiny app where I want to give the appearance of subpages for navigation, swapping the main content of the page out depending on the URL given. The closest I've got to ...
C Race's user avatar
  • 23
0 votes
1 answer
246 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
0 answers
51 views

I'm creating a simple MVC framework for a new version of my website I'm working on. Currently I have simple routing, such as /about-us etc ... Due to my lack of PHP programming experience, I am ...
Praful Rambade's user avatar
0 votes
1 answer
279 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
26 views

Here is my .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ...
 Abdullah'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
1 answer
87 views

I have built a minimal Flask application and installed it in Namecheap shared hosting, following the instructions in https://dev.to/lordghostx/how-to-host-flask-applications-on-namecheap-cpanel-299b. ...
fossildoc's user avatar
0 votes
0 answers
58 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
0 votes
0 answers
23 views

When i try to open youtube, it is not connecting. It Giving the error message like "Your connection is not private" Please help me to solve this problem. I tried to open youtube or any ...
AshwinharishP's user avatar
1 vote
0 answers
90 views

I recently took over a website from another developer. The website was developed in PHP, a language with which I have no experience, although I am familiar with full-stack JavaScript. The code works ...
axel's user avatar
  • 11

1
2 3 4 5
103