Tagged Questions
-1
votes
1answer
14 views
Nginx Rewrite Rule for all .PHP files/requests to be parsed by index.php
Is it any magic rewrite (like it does on Apache) for nginx to be able to rewrite URLs like '/submit.php' to be able to process them from index.php? We have lots of 404 not found errors because of the ...
0
votes
0answers
14 views
Nginx rewrite modify url regular expressions (PCRE)
Need to convert URLs like:
mysite.com/UserName
...
mysite.com/UserName/?foo=dododo
...
mysite.com/v?m=dododo
to URL like this:
mysite.com/?app=UserName
...
mysite.com/?app=UserName&foo=dododo
...
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
24 views
Nginx rewrite wordpress page
I have WordPress (example.com) on nginx with created page A, which has permalink example.com/a .
Wordpress doesn't have page with permalink example.com/b .
I want to inner rewrite uri /b to show page ...
0
votes
1answer
19 views
How to prevent nginx rewriting again after adding index file?
I'm trying to write some nginx rewrite rules for a web server, and one of them is as simple as:
index index.html;
...
rewrite ^/(.*)$ /web/$1 break;
This rule adds a /web before the URI. It works ...
0
votes
3answers
37 views
nginx /index.html to / rewrite
I am trying to rewrite /index.html to / for SEO purposes (stupid search engines which confuse index.html with / and penalize for duplicate content) -- also to reconcile web analytics data.
I've tried ...
0
votes
2answers
19 views
Basic Nginx rewrites
What would be the best equivalent to this Apache2 rewrite in nginx?
RewriteRule ^programmes/([A-Za-z0-9])? /index.php/programmes/?alpha=$1 [QSA,L]
I've tried the following but it doesn't seem ...
0
votes
2answers
26 views
nginx rewrite nice urls with homemade CMS
I have a home-made CMS, serving a site which I inherited. I'm not really familiar with nginx rewrite rules, although I could set up tiny URLs. Here is my relevant part of the configuration:
*location ...
0
votes
1answer
30 views
Wildcard request / location in nginx?
I have a script that increments a global revision number with each deployment of my website. This number is then mapped into the HTML that loads CSS, JavaScript and sprite assets. This is used as a ...
0
votes
1answer
41 views
questions about $args on try_files inside location with regex
(sorry for my bad english)
i have a URL like this:
http://www.domain.com/resize.php?pic=images/elements/imagename.jpg&type=300crop
that php checks if that image exists and serves, if not, ...
0
votes
1answer
27 views
nginx rewrite rules in location
I have to redirect the following url:
http://wwww.domain.de/dynamic_subdir1/subdir2/subdir3/?querysting
to
http://www.domoain.de/dynamic_subdir1/static_dir/subdir2/subdir3/file.php?querysting
In ...
0
votes
1answer
44 views
Nginx redirect all POST traffic to another server
I am in the middle of setting up a 3 node web server cluster running Nginx , Apache 2 and MySQL.
The question is this. In my rewrite rules on web server 2 - 3 I want to direct all POST traffic to ...
1
vote
2answers
55 views
Rewrite URL in Nginx proxy + apache setup
I'm working in python/django with apache and a Nginx proxy.
I need to transform some URLs like these:
www.mydomain.com/client_A/
www.mydomain.com/client_B/
to
www.mydomain.com/clients/1/
...
1
vote
1answer
52 views
Remove www. from host name using Nginx Rewrite
I am trying to configure my Nginx to strip out www. from hostname.
I am looking for generic rule that handle possible subdomain cases.
E.g. If http://www.foo1.sample.com and ...
0
votes
1answer
39 views
Nginx url rewrite rules
I have URL like this:
http://example.com/site1
http://example.com/site2
... ...
http://example.com/siten
Yes, there are a list of sites.
But actually I would like to access the subsites by( ...
1
vote
2answers
47 views
How to use Nginx to separate variables with slashes
I'd like to be able to use
www.example.com/profiles/1234567890
instead of
www.example.com/profiles?id=1234567890
but was unable to figure out how to do so.
I found an apache equivalent here: Turn ...
0
votes
1answer
62 views
nginx GET .php variables
I have a bunch of PHP files that take .php?id=123 and I need to get them all. How do I do them all in my config file?
I can't seem to figure out how to make use of
get1.php?id=stuff
...
0
votes
0answers
23 views
Pass only unique visitor,redirect non uniq to another link.(Nginx)
i guess it need to develop module for nginx? Or use embedded language like perl or js or lua. But i have hope that someone already solve this problem,in different way.
Sheme:
Globally
Unique visitor( ...
0
votes
2answers
115 views
Nginx Fuelphp VHost Config - File Not Found
I am trying to setup my first fuelphp project in ubuntu12, php5 and nginx, Im following their tutorial in http://ucf.github.io/fuelphp-crash-course/#Every_Building_Needs_A_Scaffold
The problem Im ...
-1
votes
1answer
20 views
Why isn't this simple nginx rule working? [closed]
I have a .htaccess folder in the HTML folder of my nginx. If I access the page by mysite/community.php it works, but when I try mysite/community it does not.
This is my whole .htaccess file:
rewrite ...
0
votes
1answer
31 views
nginx rewrite php args
I am using nginx 1.2.3 on ubuntu 10.4 with php5-fpm
http://xxx.com/step2.php?qid=RAUVGXF
I wouldlike to rewrite
/step2.php?qid=RAUVGXF
as
/step2/RAUVGXF
How can I do that ?
part of my nginx config ...
0
votes
0answers
30 views
nginx rewrite to different directory, local image links
I'm trying to do the following rewrite in nginx:
/users/BilboBaggins
to
/web/profile.php?username=BilboBaggins
I currently have:
rewrite ^/users/(.*)$ /web/profile.php?username=$1 last;
The ...
1
vote
1answer
68 views
Apache rewrite to Nginx rewrite. QSA issues. How to convert properly?
I have this rule now:
RewriteRule ^/mp3/(.*)$ /music/$1 [L,R=301]
RewriteRule ^/activate/(.*) /index.php?p=activate.php&hash=$1 [QSA]
RewriteRule ^(.*)/([0-9]+)/(.*)$ ...
1
vote
1answer
89 views
Nginx: rewrite rule to redirect to https page
I want to redirect my login page to https so that users do not inadvertently enter their credentials through the unencrypted network. How do I do something like the below?
# nginx.conf
server {
...
0
votes
1answer
59 views
URL Rewrite rule not working on nginx
I want to make a url rewrite like in apache within nginx. Basically to give location based request a more url friendly look. I keep getting 404 page not found.
server {
# site definitions (...)
...
0
votes
0answers
88 views
Nginx rewrite subdomain to path
i have a website on nginx and i would to like to create a rewrite rule like the following.
http://subdomain.domain.com/folderx/file.php?param=1¶m=2
to
...
0
votes
3answers
222 views
Nginx rewrite 404
I've spent ages looking on google for any information, and asked around some people (before anyone suggests I go and do so).
The bits of my nginx.conf that aren't working properly are below.
What's ...
0
votes
2answers
59 views
nginx 301 from www to mobile site causes 404
I'm getting a 404 for the root of my mobile site. My browser detection code looks for a mobile user-aget, sets the vary header, and 301s to the mobile site.
Here is the main site config
server {
...
0
votes
1answer
103 views
nginx rewrite to php file - File is being downloaded
Firstly, pardon me as I'm entirely new to nginx.
Single site, running Wordpress in the root and various other applications in subdirectories. Wordpress permalinks/rewrites are working perfectly as ...
0
votes
3answers
128 views
Nginx rewrite a folder with exclude
i am working on nginx webserver.
I want to redirect all urls inside folder1 www.site.com/folder1/ but not the subfolder1 www.site.com/folder1/subfolder1
I created these rules to nginx configuration ...
2
votes
1answer
172 views
Rewrite nginx host and proxypass to squid
I want to achieve the following:
Request Host:
http://example.com.proxy.myserver.com
Should be rewritten to
http://example.com
and passed to a squid server via nginx proxypass.
server {
listen ...
0
votes
0answers
51 views
Works on Apache but not Nginx
I've this wordpress-code here, which aims to take a post_meta from one page, and pass it on to a src of an iframe in the next page.
Single page:
<a href="<?php echo get_home_url(); ...
0
votes
2answers
42 views
nginx rewrite for Drupal and bad URLs
This is a snippet of my nginx configuration for Drupal:
server {
listen 80;
server_name _;
root /home/testing/public_html/staging;
location = /favicon.ico {
...
0
votes
0answers
73 views
nginx - rewrite only www to non-www
I'm trying to redirect www.example.com to example.com This is my nginx rewrite rule:
server {
listen 80;
server_name www.upinbangalore.com;
return 301 ...
0
votes
1answer
24 views
nginx advanced rewrite
I'm trying to create a rewrite in nginx that i can't seem to get working quite right...
What i'm trying to do:
rewrite:
bleh.com/productPage/productname/?action=yes&id=12
to:
...
-1
votes
1answer
27 views
Redirect only home page
I need to redirect only http://shop.test.com to http://www.test.com/fedex-orders/
Just homepage. Nothing else. ie http://shop.test.com/?page=blog should NOT redirect.
0
votes
2answers
78 views
rewrite subdomain url in nginx to backend-server
I'm running nginx in front of my django (gunicorn) app. I want calls made to:
api.mydomain.com
to be redirected to:
localhost:8080/api
I now have this, but this obviously doesn't work:
server ...
-1
votes
1answer
79 views
Nginx http rewrites inside body of the site - magento [closed]
I have problem with magento site and nginx. When I enter the site via http then of course I have all linked resources (css/js/imges) via http but if I enter it via https then still all resources are ...
0
votes
1answer
44 views
Trouble with nginx rewrite
Hi so I need to rewrite this:
www.site.com/foo.php?var1=value1&var2=value2
to this:
www.site.com/value2
I tried this:
location /value2 {
rewrite ^/value2/?$ ...
0
votes
0answers
97 views
nginx rewrite rules plus removed file extension
I try to setup this script http://www.stitchapps.com/products/auth-manager
but we use nginx as webserver.
What I have so far:
location /account {
root /var/www/project/demo/;
try_files $uri $uri/ ...
1
vote
2answers
46 views
Nginx rewrite triggers download
I'm struggling with creating a simple rewrite url on nginx.
My configuration looks like this:
location /foo/bar {
rewrite ^/(.+)$ /index.php?p=$1 break;
}
E.g. /foo/bar/baz should become ...
0
votes
1answer
24 views
Nginx Rewrite to another path on the server
Is it possible to do a rewrite rule in nginx to rewrite to another location on the server, outside of the current account?
For example, I want to rewrite image123.jpg to location on the server ...
0
votes
1answer
49 views
Translate htaccess rewrite rule for nginx
I would like to translate the following apache htaccess rewrite rule for nginx.
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) - [PT,L]
RewriteRule ...
0
votes
1answer
215 views
nginx rewrite WITHOUT change url
I want to use rewrite function in my nginx server.
When I try "http://www.example.com/1234", I want to rewrite "http://www.example.com/v.php?id=1234" and want to get "http://www.example.com/1234" in ...
0
votes
1answer
174 views
nginx-apache-wordpress: setup apache/wordpress under subdirectory and behind nginx
I had developed a Rails app and was happy with it, but I was asked to setup Wordpress under subdirectory /wp. After some unhappy hours of trying to make nginx-to-apache proxying work, I gave up ...
1
vote
1answer
174 views
Nginx+phpFPM Rewrite rules not working
I got FreeBSD 9.1 VPS with Nginx+phpFPM installed. The problem in rewrite rules for urls for phpBB forum. Tried to insert some configs and none working. Orginal .htaccess:
# REMEBER YOU ONLY NEED TO ...
1
vote
2answers
389 views
nginx rewrite all wildcard subdomains to www.site.com [closed]
Using nginx, I want to redirect all subdomains of site.com to www.site.com
I have seen redirects here to redirect non-www to www or vise versa, but this question is a little different I believe since ...
-1
votes
1answer
96 views
nginx multiple rewrite rule [closed]
i have the following code in nginx conf,
location / {
...
try_files $uri $uri/ @handler;
}
location @handler {
rewrite ^(.*) /index.php?$1 last;
rewrite ...
-1
votes
1answer
240 views
How to redirect full path to query parameter in nginx? [closed]
I need to rewrite following url:
http://olddomain.com/demo?abc=ced&ghi=jkl
to
http://newdomain.com/legacy?url=http://olddomain.com/demo?abc=ced&ghi=jkl
In theory I could use:
rewrite .* ...
0
votes
1answer
98 views
Nginx: NonWWW (80) and rewrite one subdomain (443)
I have 'www.domain.com' and want to always rewrite it to 'domain.com' (only available through/on port 80)
I also wanted to add subdomain like 'c.domain.com', always rewrited (and only available) to ...


