url-rewriting Questions
8
Solved
I'm using Charles Proxy to rewrite a response from an API for testing purpose.
If I set a breakpoint, I am allowed to completely rewrite the raw response as I wish.
However, if I want to automate...
Iridaceous asked 16/1, 2013 at 14:0
8
I need to translate the address:
www.example.com/TEST in ---> www.example.com/test
Yankeeism asked 8/9, 2010 at 8:46
17
Solved
I've got some automatic emails that are sent out upon signup completion for my site.
Until recently, they worked fine. Now Google's new system is rewriting the images and storing them in its cache ...
Garrik asked 3/1, 2014 at 12:43
21
Solved
Is there a way I can modify the URL of the current page without reloading the page?
I would like to access the portion before the # hash if possible.
I only need to change the portion after the dom...
Ilo asked 5/5, 2009 at 10:54
9
Solved
I need the Url Rewrite module on my IIS But it does not install and says that I need at least IIS7
Christman asked 10/2, 2016 at 15:59
4
Solved
I've noticed that with .NET MVC sites, you're able to hit URLs with multiple forward slashes, for example:
http://www.example.com//category
http://www.example.com//category//product
The URL load...
Pugging asked 17/8, 2012 at 10:39
8
Solved
I need to redirect non-www URLs to www URL for both HTTP and HTTPS URLs. I tried following rules in web.config.
<rule name="Redirect to WWW" stopProcessing="true">
<ma...
Memling asked 18/7, 2013 at 4:49
2
Solved
I'm trying to write a URL rewrite rule to force a HTTPS connection. This should always happen except when a request is using localhost (e.g. http://localhost/mysite).
The rule is configured as fol...
Oleograph asked 6/10, 2014 at 15:36
10
We have several rails apps under common domain in Docker, and we use nginx to direct requests to specific apps.
our_dev_server.com/foo # proxies to foo app
our_dev_server.com/bar # proxies to bar
...
Sponger asked 29/9, 2015 at 13:47
3
I have developed a multilanguage prestashop store completely in localhost using xampp in mac and it works. Both the backoffice and the store (frontoffice). After that, i have deployed it to amazon ...
Ca asked 12/3, 2015 at 11:51
2
Solved
I have this rule:
RewriteRule ^(about|installation|mypages|privacy|terms)(/)*$
/index.php?kind=portal&id=1&page=$1&%{QUERY_STRING} [L]
How can I change it so that it would work only...
Belligerent asked 28/5, 2012 at 13:28
2
I would like to know how I can get clean image url's with next/image component in Next.js.
Current URL Example below:
https://www.example.com/_next/image?url=%2Fimages%2Fhome%2FDog-image-1.jpg&...
Kendrakendrah asked 29/12, 2021 at 15:26
3
I deployed Vue JS on kubernetes. And I need to configure nginx route like on this page :
https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations
The configuratio...
Bougainville asked 13/5, 2019 at 7:43
1
When Facebook scraper send request, I would return an AWS S3 image. How can I filter request and'rewrite' to AWS S3? I tried this in next.config.js:
async rewrites() {
return [
{
source: '/:orga...
Catchings asked 22/4, 2022 at 12:0
19
Currently I am using the hosting with lightspeed server. Hosting says mod_rewrite is enabled but I can't get my script working there. Whenever I try to access the URL, it returns 404 - not found pa...
Evanevander asked 7/9, 2011 at 17:3
3
In a classic Kubernetes Nginx ingress I know that it is possible to rewrite target url based on a specific regex by appling this annotation nginx.ingress.kubernetes.io/rewrite-target: /$1
But th...
Voidable asked 19/4, 2019 at 15:42
6
Solved
Preface: Yes this question seems like duplicated, and I found related questions, but answers from there didnt help to me. :(
Hello, I want to add human readable URL's support for my PHP project. F...
Strachan asked 10/10, 2015 at 20:5
25
Solved
I would like to redirect www.example.com to example.com. The following htaccess code makes this happen:
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L...
Silvia asked 24/10, 2008 at 18:19
2
I have a nextjs project with a :client param which represents a client, like this:
domain.com/:client
And I have multiple clients... so I need to do this rewrite:
:client.domain.com -> domain.co...
Jive asked 19/5, 2021 at 4:0
0
I'm trying to proxy a request to a backend with Next rewrites.
next.config.js:
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://somedomain.loc/api/:path*...
Asperges asked 23/12, 2022 at 0:44
1
In my WP v6.1, I have two custom port types: company, product and custom taxonomy country.
Desired URL structure is %country%/%company_postname% and %country%/%product_postname% respectively and be...
Overgrowth asked 9/11, 2022 at 4:8
6
I am working with an application that returns urls, written with Flask. I want the URL displayed to the user to be as clean as possible so I want to remove the http:// from it. I looked and found t...
Osteoporosis asked 10/2, 2014 at 20:39
2
Solved
In Magento CE, I'd like to install an add-on to Extendware Page Cache called Lightening Cache.
It requires editing the Apache configuration inside the virtual host definition for the site, by addin...
Claudy asked 1/1, 2016 at 7:2
11
I can't figure out why my .htaccess header settings doesn't work.
My .htaccess file content:
Header set Access-Control-Allow-Origin *
Header always set Access-Control-Allow-Methods "POST, GET, OP...
Scrivenor asked 17/5, 2012 at 17:33
4
Solved
I have URL Rewrite setup on an IIS 7.5 site: http://site1.com/
This acts as a reverse proxy to the second site: http://site2.com/
Here is the flow of events:
1. Browser does a GET on http://site1...
Heteroclite asked 7/5, 2014 at 4:48
© 2022 - 2025 — McMap. All rights reserved.