5,735 questions
Advice
0
votes
1
replies
77
views
URL modification with NginX
I have a simple directory with the following architecture:
www.mydomain.com/city_name/item_id/
Is it possible to modify URLs according to this view:
city_name.mydomain.com/item_id/
using NginX?
Thanks!...
0
votes
1
answer
70
views
Plot limited domain for equation in Geogebra
In GeoGebra is there a method to plot only a portion of a curve defined by an equation? In other words if I want to plot only the first quadrant of the equation of a circle x^2+y^2=1, is there a way ...
1
vote
1
answer
128
views
Dynamic WordPress .htaccess subdomains does not work
I am trying to load custom dynamic subdomains to load as specific subfolders on my WordPress site.
Example:
apple.example.com should load the content from example.com/subfolder/apple
apple.example....
1
vote
1
answer
157
views
Next.js host based rewrite did not trigger on the root path
I want my subdomain sub.example.com to render the page example.com/brand without changing the URL.
Examples
sub.example.com/ should render example.com/brand
sub.example.com/work should render example....
0
votes
0
answers
53
views
How does setting the cookies samesite attribute to strict affect a web application with the FE and BE on two different sub domains?
In my web app, I have whitelisted all the domains for CORS. I still need to set the sameSite and secure attributes for cookies. My frontend and backend are in 2 different sub domains. my microservice ...
-2
votes
1
answer
111
views
token in cookie get lost after refreshing the page. MERN stack
i am using the mern stack to make chat app, everything works fine on the my local environment but when i deployed my site on render and vercel both, they have common problem -> after login token is ...
0
votes
1
answer
97
views
Laravel: Google is indexing my site with subdomains, which are now obsolete. How to redirect?
In my app I had ca. 20 subdomains. Now they are gone and https certificates with them.
However, Google is indexing my site with use of the subdomains, which was never my intention.
Example:
Google ...
0
votes
1
answer
173
views
How to Combine Next.js 14 Middleware with next-intl for Localization, Province Subdomain Rewrites, and CORS?
I'm working on a Next.js 14 (and I want to configure localization) project using the App Router and need to combine three middleware functionalities:
Province subdomain rewrites
Localization with ...
-1
votes
1
answer
231
views
How to manually enumerate subdomains?
I am currently trying to enumerate subdomains with wildcard filtering straight from the linux terminal. I have created a shell that seams to be spot on but the output files keep coming up empty. Any ...
0
votes
2
answers
251
views
Where to set up subdomain routing? Front-end (React) or Django (Backend)?
I'm currently building a multi-tenant web application using Django and React. Right now, each user's page is available at a URL like https://mywebsite.com/. However, I want to change this so that each ...
0
votes
0
answers
47
views
Flask Subdomain Routing Not Working Correctly After Deployment on Render.com
I'm stuck with an issue on how to properly set up subdomains in my Flask project. Here's a simple example of the code I'm working with:
from flask import Flask
app = Flask(__name__)
app.config['...
0
votes
0
answers
82
views
How can I point a subdomain at a directory without breaking PHP includes?
I am trying to use a subdomain to make an internal file browser on my site look flashier. My site is example.com. I have a directory at example.com/files/, with many various subdirectories.
I want ...
2
votes
1
answer
95
views
How does shopify verifiy that the 3rd party domain I try to connect via settings>domains does not belong to another shopify user?
According to connect-subdomain help page the steps to connect a 3rd party domnain to your shopify store is:
on the 3rd party provider: Point the CNAME record for your subdomain to shops.myshopify.com
...
1
vote
1
answer
199
views
Nginx proxy all subdomains
I currently proxy a website on my.domain:6799 to remote.com but that domain also uses subdomains like img.remote.com or video.remote.com.
It it possible to add some kind of rule that proxys the ...
1
vote
2
answers
96
views
How to move image to another subdomain's public folder?
My code for moving an image to another subdomain public path:
<?php
if ($request->front_picture_path != '') {
$imageName3 = time() . '_front.' . request()->front_picture_path->...