Tagged Questions
0
votes
0answers
19 views
Redirect rules in Nginx config files won't work
I have a site which is contained in /var/www/html/NavHawk2. It is a codeigniter website. What I needed was to rewrite URLs from /NavHawk2/login to like, NavHawk2/index.php/login and serve the static ...
0
votes
0answers
14 views
nginx Rewrite Condition from .htaccess
i just switched over to nginx and everything works fine till now.
I just have a big problem with one of my old rewrites:
RewriteCond %{REQUEST_URI} !.+/index.php$
RewriteRule ^special/.+/.+/.+\.php$ ...
-1
votes
0answers
15 views
Nginx redirect based on pattern of request [closed]
One of my servers was attacked by DDoS a couple of days ago and it lasted for 4 days. Below are the logs snippet of the request:
36.224.180.253 - - [14/May/2013:03:11:46 +0800] "GET ...
0
votes
3answers
34 views
NGINX Redirect without rewriting the url excluding IP and directory
We've got a page that we put up on our website when we take it down for maintenance or updates. The basic pseudocode logic looks something like this:
if IP != 72.56.43.212 and location !~ /down then
...
0
votes
1answer
20 views
Block direct access to php files (only rewrited) using nginx
I have files like Ucp.php Somesite.php and i want to create a rewrite rules for nginx. This is not problematic.
But i also want to block direct access to those php files, so that enetring ...
0
votes
0answers
21 views
Wordpress on Heroku w/ nginx: how to URL_REWRITE
I have done a wordpress-on-heroku set up, which is working great. It is based on https://github.com/mchung/heroku-buildpack-wordpress and uses nginx.
I am trying to
Change the visible url to ...
4
votes
2answers
173 views
Enable SEO URLs on multi stores and subdomains on OpenCart using Nginx
I am trying to get SEO URLs working across multi-stores in OpenCart.
I have two stores in the admin
http://www.shop.com (default)
http://m.shop.com
SEO URLs work for http://www.shop.com
But they ...
0
votes
1answer
43 views
Nginx rewrite without 301 code
I want to redirect all queries to my site to https protocol.
My config is:
server {
listen 80;
server_name addons.vkzvuk.ru;
server_name www.vkzvuk.ru;
server_name ...
0
votes
3answers
64 views
How to redirect ALL requests, even index.php to go to another php file (parse.php)
Right now I have this in my nginx config:
location / {
rewrite ^(.*)$ /parse.php;
}
Then further down:
location ~\.php$ {
root /var/www/site.com/public/;
...
-1
votes
1answer
45 views
0
votes
1answer
70 views
How to replace underscore to dash with Nginx
I'm using Nginx for the first time ever, and got basically no knowledge of it.
I need to replace "_" with "-" in 100+ URL. I figured there must be an easy way to do this with Nginx, but can't find ...
0
votes
1answer
178 views
Using NginX and Laravel: URL Rewrites
I'm trying to setup the Laravel framework on my VPS running CentOS 6.4 and NginX 1.8. I can get everything else to work perfectly, except I can't get the cleaner URLs to work, like using ...
1
vote
1answer
19 views
Use pseudo php rewriting with nginx
I am currently working on a script which uses pseudo url rewriting. Url like http://domain.com/index.php/admin work fine on Apache servers, but fail to run on the nginx webserver.
Is there a way let ...
0
votes
0answers
76 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 ...
2
votes
1answer
197 views
OpenCart on nginX
Can OpenCart use SEO URLs on nginX? I understand that in Apache, it creates an .htaccess, but is it capable of automatically managing the URL redirection in nginX?
0
votes
1answer
67 views
URL rewriting in nginX
We currently run Apache and use .htaccess to rewrite URLs in several scripts including WordPress and OpenCart.
For performance reasons, we would like to move to a nginX+Varnish stack. How can we ...
-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
191 views
nginx config files redirecting to subfolder
I'm currently trying to deploy a website in two directories. Despite the lot of documentations on it, I was not able to obtain the behavior that I wish. This is the architecture of the websites :
...
0
votes
0answers
344 views
Nginx Rewrite route to index.php Except /phpmyadmin AND url shortening / handling / splitting
Hi first question on stackoverflow :)
Im routing everything to index.php
so i can handle url shortening and internal routing there
tryed nginx rewrite all to index.php except whitelist no succes
my ...
0
votes
1answer
38 views
Nginx URL rewrite changes URL
I need to redirect a URL in nginx. My rule looks like this which actually causes the browser to visibly change the URL, which is not what is expected.
location / {
rewrite ...
-1
votes
2answers
163 views
Nginx Transmission-daemon URL rewrite [closed]
I've been working around this configuration but to no avail. What I am trying to achieve is to mask my url from http://subdomain.domain.com:9091/transmission/web/ to http://subdomain.domain.com/tr/
...
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
0answers
50 views
How to configure nginx to server images from subdomain?
I want to configure nginx on mydomain.com so that all my images (jpg|gif|png) which are currently being serversd from mydomain.com/files to be redirected to my second machin i.e. cdn.mydomain.com
I ...
0
votes
1answer
95 views
Match subdomains to jetty web apps with Nginx [closed]
My goal is, using Nginx:
coolapp.example.com -> www.example.com:8080/coolapp/
greatapp.example.com -> www.example.com:8080/greatapp/
... -> ...
...
0
votes
0answers
19 views
apache rewrite rules to nginx
I need an help to converto this apache rewrite rules:
RewriteRule \.(js|ico|txt|gif|jpg|png|css|xml)$ - [L]
RewriteRule \_sql - [L]
RewriteRule view/img/charts - [L]
to nginx. I tryed with this:
...
-1
votes
1answer
241 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 .* ...
-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
27 views
Functions not working
i have problem i have this site www.example.com
I uploaded my ci site, which worked well on my localhost, now when i try to access
example.com/index.php/cont/method
that won't work and if i do this ...
1
vote
1answer
153 views
nginx rewrite rule to remove - and _
i need a nginx rewrite rule for the following problem:
I have Urls that include several hyphen and eventually underscores
Example request: ...
1
vote
2answers
65 views
Rewrite PHP parameters for RoR in nginx
I have a website which used to be written in PHP and I re-wrote using Rails. It's essentially a blog platform consisting of posts. I am still getting requests from Google using the old URL scheme. ...
2
votes
1answer
100 views
Curly braces ({ and }) from Apache to Nginx rewrite rules.
I have this rules that sucessfully worked on apache but return error or nginx :
rewrite ^/saison-([0-9]{1})$ /pages.php?cat_page=saison-$1&season=$1 last;
rewrite ...
0
votes
1answer
167 views
Nginx rewrite: replace trailing numbers with query string
I'd like to achieve the following in Nginx:
/product/view/32 ---> /product/view?id=32
/product/add/32 ----> /product/add?id=32
/product/edit/32 ---> /product/edit?id=32
/post/view/32 ---> ...
0
votes
1answer
177 views
nginx php file rewrite url
so with apache i have a folder:
www.domain.com/folder/folder1/index.php?word=blahblah
and i want users who access www.domain.com/folder/folder1/blahblah to be redirected to the above URL without the ...
0
votes
1answer
133 views
Nginx rewrite domain and URLs
I'm configuring nginx with multiple server names, and trying to set up the following rewrite rules
redirect / on old.domain.com to new.domain.com/specific_page.php
redirect old.domain.com/$1 to ...
0
votes
1answer
89 views
Nginx | Rewrite - I don't understand to fix this
Can someone help me in solving this problem.
I just don't get it. Problem: I can not execute PHP files in subdirectories. So i have no idea how to write this rule. Say if I want to use a plugin (that ...
0
votes
1answer
127 views
rewrite for nginx
Hello i am trying to rewrite these to nginx format but couldnt achieve any progress. Can you help me to rewrite these for nginx?
# Rewrite any calls to *.html, *.json, *.xml, *.atom, *.rss, *.rdf or ...
0
votes
0answers
36 views
nginx won't let me rewriting my urls
I installed nginx and first point is that it is quite difficult to find real stuff, since a lot of blogs or whatsoever show vulnerable configurations.
As i am the worst among the worst, i cannot find ...
0
votes
0answers
284 views
Nginx rewrite rules for AngularJS and html5mode enabled
so far,i am building AngularJS application served with nginx. I had rails in the middle and i came with rewrite ^/(?!assets) / last; rewrite rule (rewrite everything expect those beginning with ...
0
votes
0answers
64 views
Converting an Apache Rewrite to Nginx Rewrite
I'm having some issues transferring my apache rewrite rules into nginx rules. Please could someone help me with these.
.htaccess rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ...
0
votes
0answers
100 views
Nginx URL rewrite configuration with PHP
I'm trying to enter a rewrite rule into an nginx config. The rewrite rule rewrites a URL to a PHP page.
In the current config file, after rewriting, it successfully sends the request to the PHP file, ...
-1
votes
1answer
325 views
How do I escape question mark with nginx rewrite?
Im bussy migrating my websites to nginx and I have a lot of rewrite rules that need to be converted, the only problem I'm experiencing is when I try to do something like this:
rewrite ^/media?(.*)$ ...
0
votes
0answers
69 views
Redirect specific query to a page (nginx)
I moved my website from Joomla to WordPress.. I'd like to redirect www.website.com/?option=com_content&view=article&id=164&Itemid=139 to www.website.com/listituto/contatti/ (so, same ...
0
votes
0answers
26 views
how to redirect foo/index.html to foo/ in nginx
I want a request for http://example.com/foo/index.html to load http://example.com/foo/ in nginx. and hide index.html in url .what can I do?
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:
...
0
votes
0answers
93 views
nginx rewrite - always go to index unless file exists
I need to setup nginx to with these conditions:
If a file does not exist (no matter which path is set) then it will set the $args to the $request_uri and go to the default page (index.php)
example ...
0
votes
0answers
88 views
Nginx: converting htaccess, several issues
I'm trying to convert this htaccess file to nginx on a Centos 6.3 Server correctly configured with virtualmin + nginx + fastcgi
htaccess code:
RewriteEngine On
RewriteBase /
RewriteCond ...
2
votes
0answers
154 views
nginx load balancing keep redirect me wrong
hi i have nginx server and other webserver which i want to hide from public direct access. but when i try to access that server on root i send redirect response to client to url like this: ...
0
votes
0answers
200 views
nginx rewrite, exclude directory
I have this rewrite on nginx
if (!-f $request_filename) {
rewrite ^/([a-zA-Z0-9-]+)(/*)(.*)$ /index.php?type=$1&id=$3 last;
}
And need to exclude one directory from rewriting, is it ...
0
votes
1answer
74 views
One Nginx Rewrite Rule Needed
I'm stuck with one broken nginx rewrite rule on my site, and this is my last glimmer of hope in getting it fixed.
The apache rule is this:
RewriteRule ^file/([0-9]+)?/([0-9]+)x([0-9]+)/([^/\.]+) ...
1
vote
1answer
139 views
Nginx permanent redirection with and without trailing slash
I couldn't find any ways to make url redirection with and without trailing slash to work.
I want to make it whenever url calling to example.com/info and example.com/info/ will go to ...


