1,790 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
40
views
Redirecting from subfolder to new subdomain
I am trying to write a redirect / for the following
Current setup:
subfolder: forum
URL: website/forum/
New Set up
Root
URL: forum.newwebsite/
What I need to do is redirect:
https://website/...
0
votes
0
answers
31
views
Redirect of entire site not working for sub-folders
I have implemented this change to .htaccess.
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?stakeholdermap\.com$ [NC] RewriteRule ^(.*)$ https://www.stakeholder-map.com/1ドル [L,R=301]
...
0
votes
1
answer
204
views
Using AWS CloudFront to Serve HTTPS to AWS S3 Buckets, but SOME images are stuck in a redirect loop
Yesterday, I setup Certs and CloudFront, in order to move my sites from http to https. http auto-redirects to https. The CloudFront distros point at the S3 buckets. Everything works; except, some ...
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
0
answers
160
views
iOS Browsers Stripping API GET Headers After 301 Redirect
I have a Django Server on an EC2 container and I use Firebase to authenticate my users. To authenticate the user I use an Authorization header with the Bearer Token on my API and get the Firebase UID ...
1
vote
0
answers
21
views
Remov3e 301 redirect?
I want to remove 301 redirect from old url to new url.
I want old url give 404 error instead of redirecting to new url. I check all the possible factors in Rankmath like .htaccess file, robots.txt ...
0
votes
0
answers
32
views
301 redirect from Cyrillic capital letters to lower
I need to redirect urls containing capital Cyrillic letters to lower Cyrillic letters as they generate 404 errors on the website.
I have tried this:
RewriteEngine On
RewriteCond %{REQUEST_URI} [A-ZА-Я]...
0
votes
0
answers
37
views
Best way to handle 301 redirect for my product pages
I have a lot of products which currently have url structure like this:
https://www.mywebsite.com/product-name1
or
https://www.mywebsite.com/Product-name1 / capital P
I have rebuilded my website using ...
0
votes
1
answer
68
views
WordPress redirect only one URL to a Laravel site
I have a WordPress site, https://dogx.hu, and a separate Laravel eCommerce site. My primary objective is to redirect from the "/shop" URL of the WordPress site to the Laravel site. In other ...
0
votes
0
answers
525
views
Why is my AWS ALB 301 Redirect not working?
I have an AWS load balancer that does a 301 redirect from URL test1 to URL test2. For the most part the redirect works as expected, however, when I have a script with type=module, then test1 isn't ...
0
votes
2
answers
281
views
Redirecting apex domain to non apex URL (www to non www) on GCP / GKE
There's an SEO issue where we have duplicate domains ..
For example - www.domain.com and domain.com.
I would like to recreate a 301 redirect from the apex website (www.domain.com) to the non-apex URL (...
0
votes
1
answer
32
views
301 Redirect to assimilate one website into another
I have a main website example.com and another website subsidary.com.
The subsidary.com website is to be phased out and redirects put in place.
subsidary.com will have its A record repointed to example....
0
votes
0
answers
724
views
Flutter Dio or http.MultipartRequest post Http status error [301] uploading an Image
I ́m working my first project in flutter. I have a web server with mysql, and I'm loading and sending there the data with REST API PHP.
Now I have an upload folder located here:
https:///wp-content/...
1
vote
1
answer
171
views
htaccess: how to avoid repeated conditions/rules
Well known issue: Google indexing engine states it can see 2x2x2=8 duplicates of the URLs, where differences are
http - https
www - no www
root/ - root/index.php
(8 duplicates for the root URL, and ...
0
votes
0
answers
301
views
.htaccess: Clear Browser Cache & Redirection
Use case is a Wordpress installation, with another in subdirectory setup through cPanel.
Code was generated for standard redirection of subfolder to index.html in subfolder subDir:
RewriteEngine On
...