Tagged Questions
0
votes
1answer
18 views
nginx 301 rewrite root domain works but files are not being redirected
I'm trying to redirect a domain to another url in nginx and it works partially.
It looks like this:
location / {
rewrite ^/(.*) http://www.some_domain.tld/some_dir/some_file.php ...
0
votes
1answer
40 views
nginx returning 404 after rewriting to url that exists
I've been banging my head on this one for a while, but could someone please help me figure out why this in my location / block isn't matching ...
0
votes
0answers
28 views
Reverse Proxy with nginx for main site and subdomains
I am trying to do a reverse proxy on nginx with different sub domains pointing to different back end servers. This has been answered with great detail and i did get it to work however, I have a unique ...
0
votes
1answer
97 views
404 on Prestashop 1.5 under nginx
I have a problem with nginx giving a 404 error on a Prestashop 1.5.4.1 site.
This is the URL returning the 404:
www.domain.com/es/index.php?controller=order-confirmation
The prestashop is under ...
0
votes
0answers
22 views
Re-direct only root domain, not subdomains
I've started using Nginx over Apache, it's pretty cool so far. The service itself is working, however now I need to re-direct any HTTP traffic to a domain example.com but not sub-domains like ...
0
votes
0answers
36 views
nginx try_files with ruby on rails cached pages
I've noticed that nginx is not serving the cached index.html page on the root domain.
ex.) http://dev.website/ should serve up /rails_app/public/cache/index.html, but defaults to rails app serving ...
0
votes
0answers
28 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$ ...
0
votes
3answers
87 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
44 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
31 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 ...
7
votes
3answers
409 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
60 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
77 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
59 views
0
votes
1answer
101 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
343 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
22 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
86 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
334 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
83 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
34 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
321 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
405 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
44 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
254 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
57 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
52 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
108 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
261 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
479 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
30 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
163 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
75 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
125 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
182 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
248 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
149 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
106 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
188 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
39 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
343 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
73 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
108 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
397 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
71 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
31 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
101 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
97 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 ...



