0
votes
1answer
21 views

Check if file exists on Nginx using regex

I'm trying to translate some htaccess files to Nginx vhost configuration, and i'm having trouble with this: RewriteCond %{DOCUMENT_ROOT}/img/id_$1_$2 -f RewriteRule ^id/(.+)/(.+)$ img/id_$1_$2 [NC,L] ...
0
votes
1answer
22 views

Redirect an old php file to a new URL using Nginx

I have a website with URLs corresponding to PHP files: www.mysite.com/cat.php?id=stuff These PHP files don't exist anymore, how can I do a 301 redirect (for SEO reasons) to the new URL : ...
0
votes
1answer
17 views

Regex rule in an NGinx Config to only compare against the first url param

Here is an example of our current Nginx rule that will redirect some traffic from one base domain to another (result of a DNS Migration): location ~* /(var1|var2|var3) { rewrite ^ ...
0
votes
1answer
29 views

NGINX Redirect Loop for a single page

I have an NGINX Webserver and I am trying to redirect the page www.example.com/newsletter to www.example.com/blog/category/newsletter but the redirect rule I have is matching both ...
1
vote
2answers
101 views

Nginx location “not equal to” regex

How do I set a location condition in Nginx that responds to anything that isn't equal to the listed locations? I tried: location !~/(dir1|file2\.php) { rewrite ^/(.*) http://example.com/$1 ...
0
votes
1answer
73 views

nginx location regex - character class and range of matches

I am trying to setup a regex for the path /s/<4-6 character string here> where I capture the 4-6 character string as $1. I tried using the following two entries, but both fail location ~ ...
0
votes
1answer
68 views

nginx URL rewrite using negative regex?

I'm trying to redirect requests to https in nginx, unless it is of the form HOST/ANY_STRING_OF_CHARS/END_OF_URI, e.g.: http://host.org/about # no redirect http://host.org/users/sign_in # redirects ...
-1
votes
1answer
45 views

Nginx URL rewriting [closed]

I have the following nginx URL rewrite block. url.rewrite-once = ( ...
-1
votes
1answer
145 views

How to match question mark “?” as regexp on nginx.conf location [closed]

I'd like to match question mark "?" as regexp on nginx.conf location. For example, a URL pattern which I'd like to match is /something?foo=5 or /something?bar=8 (parameter only changeable). Because ...
0
votes
1answer
114 views

Nginx server_name regexp not working as variable

Is there anybody who tell me why i still got error like this? Restarting nginx: [emerg]: unknown "domain_name" variable configuration file /etc/nginx/nginx.conf test failed the part of code where ...
0
votes
2answers
240 views

Nginx Block/Deny Access to multiple locations regex

So basically i am using Nginx as a reverse proxy for my Apache instillation and as a security feature it blocks access to phpmyadmin, webalizer etc for everyone except localhost but using nginx it ...
0
votes
1answer
200 views

Nginx Regex URL Rewrite Not Working

Why on earth does this not work when all my other URL rewrites work perfectly: rewrite "^/search/?\?q(.+)$" /search.php?q$1 break; I did restart nginx and all of that.
0
votes
1answer
101 views

NGINX URL rewrite for static files in different directories

Could some dome please help me resolve this issue . I would like to write ALL occurrences of name.css.v=abc1234.css to name.css and name.js.v=abc123.js to name.js I have tried ...
-1
votes
1answer
165 views

Regular expression used in nginx server_name directive [closed]

Can I get some help explaining a regular expression used in nginx server_name. The directive is: server_name (?<account>.+)\.mydomain\.com$ I don't get the point of the first ? though. Also, ...
-1
votes
1answer
431 views

Nginx rewrite rule: redirect to subdirectory [closed]

Having a site with a /forum subdirectory, i.e http://example.com/forum I want to redirect every request that comes to http://example.com/$uri to http://example.com/forum/$uri if $uri doesn't start ...
0
votes
0answers
270 views

Nginx dynamic subdirectory rewrite

we have one application which work for subdomain, subdirectory and top level domain, before i was using apache2 and rewrite rule was as follow : RewriteEngine On RewriteBase / RewriteCond ...
2
votes
1answer
142 views

nginx file rewrite using multi-level regular expression

I'm developing a file server using nginx. For accessing the server file I need to append a string after each directory. Example: My URL is http://desk09/1.2/junior/kal12/pnr.doc I need to change ...
0
votes
2answers
43 views

Can I create a conditional find & replace with a regular expression?

I am using trying to a NginX substitution filter which allows the use of regular expressions. I can get it working in a basic manner, i.e. replacing phone with telephone, but I can't seem to get it to ...
0
votes
0answers
30 views

Another Nginx Rewrite Not Working

I am stuck here location / { rewrite ^/cdn1/(.*)/(.*)/(.*)$ /cdn1/$1/$2.mp3 break; return 403; } I have a url structure like: ...
5
votes
1answer
186 views

Does Nginx unquote/unescape URL characters before matching?

When I want to match a URL with spaces in it, the spaces may be encoded as %20 or +. In order to match this in an Nginx regex, what pattern do I need to use? Does Nginx pass the URL through as-is? ...
3
votes
1answer
313 views

What regular expression engine does Nginx use?

What regular expression engine does Nginx use? There are a lot of possibilities. More to the point, what flavor of syntax does it support, that is, what syntax features can I make use of?
0
votes
1answer
102 views

Nginx rewrite, whe url ends with more then one slash

I have some 404 page (example.com/404.html) I want to forward all requests ending with more then one slash to it for example example.com- valid example.com/- valid example.com//- invalid, 404 ...
0
votes
0answers
216 views

Use variable inside regex rewrite test on nginx

I've got a network of Wordpress multisites running on nginx. I'm trying to set up caching using w3 total cache. I'm 99% there, but I'm just stuck on one rule. I found some instructions that pointed ...
0
votes
3answers
1k views

variable capture in Nginx location matching

Let's say I have a URL like this: www.example.com/a/b/sth, and I write a location block in Nginx config: location ^~ /a/b/(?<myvar>[a-zA-Z]+) { # use variable $myvar here if ($myvar = ...
1
vote
2answers
480 views

Setting content dispose based on url / nginx

Having nginx serving static files with url like http://foobar.tld/<random_dir>/<file_md5sum_as_filename> and I would like if I specify at the end of url ?f="filename.filetype" - nginx ...
1
vote
2answers
76 views

Regex to match uri path except a certain page

I am trying to write a regular expression in nginx that will match all paths under /wp-admin except for /wp-admin/admin-ajax.php. Anyone have any idea how to do this?
1
vote
2answers
48 views

How to match file under a specific path but not particular extension using Regex

For example, to match all files (not jpg, png, gif) under the path common, e.g. matched: /common/foo.php /common/foo.doc not matched: /common/foo.jpg /common/foo.gif /foo Currently I am using: ...
1
vote
1answer
81 views

reducing a nginx rewrite rule

A PHP MVC-style router usually handles a request like index.php?route=one/two/three... - a query string separated by forward slashes gives the system a route to follow (such as folder > file > ...
0
votes
1answer
517 views

Nginx location redirect regex not working

I want to redirect requests to /images/someimage.png on my server to http://some.other.server/images/someimage.png. I have the following in my nginx config: location ^/images/.*(png|jpg|gif)$ { ...
0
votes
1answer
481 views

Nginx: $args $arg_param $query_string inside if statement

I have difficulties to apply this if statement in my nginx config: location / { break; proxy_pass http://127.0.0.1:4444; proxy_redirect off; ...
1
vote
1answer
486 views

Nginx URL Rewrite with Multiple Parameters

I am trying to rewrite the following URL via Nginx: http://www.domain.com/script.php?title=LONGSTRING&desc=LONGSTRING&file=LONGSTRING&id=THREELETTERS into something like this: ...
0
votes
3answers
229 views

Modifying an Nginx regular expression so that it is applied only in some cases

I'm creating a hybrid PHP/Node.js application. For PHP, I'm using the Yii framework. Within Node.js, I use express. PHP is running through Nginx. I use the proxy_pass directive to funnel any request ...
0
votes
1answer
620 views

How to match location for extension less files in nginx?

To match files with specific extensions we can use this : location ~ .*.(php|jsp|cgi|pl|py)?$ { } And all works as expected... But what in case we have files without any extension, how could i ...
2
votes
2answers
270 views

Rewriting a URL to a query string on Apache and Nginx

I'm trying to set up some path rewrites on two separate servers, one using mod-rewrite on Apache and one using HttpRewriteModule on Nginx. I don't think I'm trying to do anything too complex, but my ...
0
votes
2answers
151 views

nginx Rewrite Rules to Re-write Every Match Of a Certain Regex Except

I'm writing rewrite rules in nginx. I want to rewrite every URI that matches /A/B[anything] to /X/ except /A/B/C[/]. How do I do this? What I've tried: if ($request_uri ~ ^/A/B/C/?) { ...
2
votes
3answers
157 views

nginx - can't figure out location rewrites

I'm trying to redirect different URI requests to different EC2 containers, I've been using nginx for years as a catchall reverse proxy to apache but now I'd like to have some rewrites done at nginx ...
0
votes
2answers
430 views

Nginx HTTPS when only matching admin subfolder

I have managed to get all /admin requests redirected to https by: server { listen 80; location /admin { rewrite ^ https://$server_name$request_uri?$args permanent; } } But non ...
0
votes
1answer
53 views

Rewrite rule for “/A/B” to “/B?id=A”

I'm tring to rewrite the following URL: example.com/[name1]/[name2] to: example.com/[name2].htm?id=[name1] I'm tring this rewrite rule: rewrite ^/(\d+)/(.+)/ /$2?id=$1 last; but it does ...
0
votes
1answer
787 views

Nginx - Rewrite the request_uri before uwsgi_pass

I have a Nginx vhost than is configured as such: ... location /one { include uwsgi_params; uwsgi_pass unix:///.../one.sock; } location /two { include uwsgi_params; uwsgi_pass ...
0
votes
2answers
114 views

Updating Old Wordpress Permalinks on Nginx

I'm trying to change my website over from the default /year/month/day/post_title permalinks, to a simple /post_title/ link, however, when changing it, all of my older links are broken. I've read a ...
0
votes
2answers
386 views

nginx url rewrite

How to nginx rewrite within location context the following: / => /myurl/ /abc/ => /myurl/abc/
2
votes
1answer
293 views

mod_rewrite to nginx rewrite rules

I have converted most of my Apache HTTPd mod_rewrite rules over to nginx's HttpRewrite module (which calls PHP-FPM via FastCGI on every dynamic request). Simple rules which are defined by hard ...
1
vote
0answers
221 views

PHP front controller in nginx

I have a wiki that hosts user-generated content with URLs like /wiki/view/pagename and /wiki/modify/pagename. I'm using an nginx configuration that goes something like: location /wiki/ { ...
0
votes
1answer
2k views

nginx rewrite all to index.php except whitelist

First of all, I have tried to search for similar questions, but the solutions to those questions were specific lines of code, that I couldn't customise to fit my needs. I have a Codeigniter ...
0
votes
0answers
121 views

Nginx redirect to Subdirectory on different domain

I am a newb at Nginx, so please help or share your thoughts. I have a question regarding redirecting traffic from nginx from SiteA, SiteA/subdirectory to SiteB subdirectory. Basically, if someone ...
0
votes
2answers
198 views

Rewrite part of request url as variable on php script with nginx

What I'm trying to do is this: domain.com/account/manage/somekey/ -> domain.com/account/manage/?key=somekey domain.com/account/manage/somekey/settings/ -> ...
0
votes
0answers
161 views

nginx folder based rewrites

i have followed this guide to set up an local development environment: http://www.zalas.eu/setting-up-a-php-development-environment-with-nginx-on-ubuntu-1104 it works great when not using any rewrite ...
-4
votes
1answer
252 views

nginx: Rewrite PHP does not work [closed]

I've a Suffix Proxy installed and I'm using the following rewrite with wildcard subdomain DNS on: location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php last; break; ...
0
votes
2answers
373 views

setup nginx.config to support a location using regex to alias

My nginx.conf is configured to map http://localhost/graph to the alias web-graph. See code below: location ^~ /graph { alias $workspace/web-graph; break; } I would like to use RegEx to map ...
0
votes
2answers
135 views

java regex for nginx logs

I wish to transform my nginx logs using a reqular expression script as follows: original log: 07.21.99.178 - - [01/Jun/2012:12:06:23 +0530] "GET ...

1 2