Tagged Questions
1
vote
2answers
46 views
Simple RewriteRule with nginx
I'm trying to write a RewriteRule to make a simple url. I want users to be able to type enter
www.example.com/somepage
and have it take them to
www.example.com/abc/somepage.php
How can this be ...
-1
votes
0answers
31 views
inner links not opening in nginx server
i am having a wordpress website working all well on apache server but when i moved the website to nginx server it is not opening any internal links here is a url of website on nginx server.
...
0
votes
1answer
64 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
1answer
77 views
Apache mod_rewrite to Nginx rewrite rules
My site is running on Nginx and I am trying to add a software in the sub-directory of the site that uses Apache's mod_rewrite rules. E.g. www.mydomain.com/mySubfolder
Here is the Apache .htaccess
...
1
vote
1answer
69 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]+)/(.*)$ ...
0
votes
0answers
56 views
Convert Lighttpd rewrite to nginx
I'm having problem in converting lighttpd rewrite to nginx.
Next line.
rewrite "/torrent/([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{36}).*" => "/t/$1/$2/$3.torrent";
some help?
0
votes
3answers
225 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
55 views
.htaccess RewriteRule ^.*$ - [S=40] to Nginx [closed]
I had https://github.com/lencioni/SLIR setup on appache. It has an htaccess file and works very well. Now i have moved to Nginx and want to have SLIR work the same way. Below is what i needed 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
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 ...
-1
votes
1answer
20 views
ngix rewrite migration [closed]
I am changing server from apache to ngixn. I used .htaccess automatic changer. I have ngix.conf:
user nginx;
http {
include /etc/nginx/conf.d/*.conf;
}
and in conf.d/default.conf:
...
0
votes
0answers
93 views
.htaccess to Nginx for specific script/folder?
I've installed a script in a sub folder which relies on .htaccess rewrite rules - if you visit the script once install properly it redirects you a /login page which actually doesn't exist on the ...
0
votes
1answer
186 views
Converting .htaccess to nginx (mod_rewrite) [closed]
I've got the following .htaccess file for my apache:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
# Options +SymLinksIfOwnerMatch
RewriteEngine On
RewriteBase /
RewriteRule ^$ ...
0
votes
0answers
76 views
Is HTTP 301 the best way to integrate an existing website with AWS CloudFront?
We have an existing web product that uses a lot of static images, css files, js libs and other static content. Whenever a page is loaded, browser usually has to make dozens of additional HTTP requests ...
0
votes
1answer
93 views
in nginx return source as text
I wish to be able to return filename.jade and filename.styl as text mime type.
nginx needs to serve anything in the /source directory as if it were text
right now using symlinks
...
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 ...
0
votes
1answer
306 views
Converting apache rewrite rules (.htaccess) to nginx
Background:
I want to setup Bugify on my Ubuntu Server running nginx. I followed the instructions, installed the dependencies and the installation was successful. Once I enter my licence key and ...
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]+)/([^/\.]+) ...
0
votes
1answer
177 views
Convert .htaccess to Nginx - current re_rewrite not working
Being all new to Nginx (im really a rookie) I just found out that my .htaccess url rewrites doesnt work with Nginx.
I found some converter here:
http://winginx.com/htaccess
I tried converting my ...
0
votes
0answers
21 views
nginx rewrite trouble
I need to redirect from /company.html to /company. But the point is that I tried to use this
# nginx configuration
location /company {
rewrite ^/company/?$ /company.html;
rewrite ...
0
votes
0answers
53 views
Single domain pointing to multiple directories
I am creating an online digital repository for my company. We are using several technologies and tying them together. We will be using Drupal, GitlabsHQ, and Resourcespace and tying the ...
2
votes
1answer
438 views
Nginx reverse proxy (static files rewrite in apache)
I have some problem with Nginx (set as reverse proxy) in front of Apache. I'm using Apache to serve PHP files and for applying .htaccess rules.
Nginx works but some of the rewrites in .htaccess does ...
0
votes
1answer
111 views
Apache htacess rules converting to Nginx rules
i need to translate some htaccess rules for the nginx server,
my htaccess was:
RewriteEngine On
RewriteBase /mysite
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
...
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?
0
votes
0answers
146 views
Consistent PHP _SERVER variables between Apache and nginx? [closed]
I'm not sure if this should be asked here or on ServerFault, but here it goes...
I am trying to get started on nginx with PHP-FPM, but I noticed that the server block setup I currently have (gathered ...
1
vote
0answers
82 views
How to rewrite URL with Nginx & Orchestra PHP Cloud
I'm moving from an Apache environment to the Orchestra PHP Cloud at Engine Yard. I do not know how to accomadate my URL rewrite rules for my application. The documentation they supply for this is ...
1
vote
0answers
35 views
Coverting ReSRC.it htaccess to Nginx conf
I'm attempting to covert the below code from Apache htaccess to Nginx conf to allow ReSrc.it to automatically rewrite the html images sources. The link to the documentation is available here. Here is ...
2
votes
2answers
271 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
1answer
260 views
Nginx: Question mark in front controller rewrite rule
Currently I have this piece of code:
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php?/$1 last;
break;
}
This works OK for the following:
example.com/foo redirects to index.php
...
0
votes
1answer
101 views
Want to convert this .htaccess rule into nginx
I am new to nginx and really don't have any idea how to do this. What this below code essentially does in htaccess is for example
if a browser requests this css file from this web address
...
0
votes
1answer
20 views
HTTP host base routing
Which software can help to do like that:
request to http://host1.mycomp.com on port 80 will be NAT to PC1 on port 80.
request to http://host2.mycomp.com on port 80 will be NAT to PC2 on port ...
0
votes
2answers
163 views
apache multiple rewrite conditions to nginx
Can anyone help me with this?
RewriteCond %{REQUEST_URI} !^\/index\.php$
RewriteCond %{REQUEST_URI} !^\/search\/.*
RewriteCond %{REQUEST_URI} ^\/([^/]*)\.php$
RewriteRule (.*) ...
2
votes
1answer
38 views
I need to convert apache rewrite to nginx
I need to convert apache mod_rewrite rules to nginx
please help !
Apache rewrite rules is :
RewriteEngine On
Options +FollowSymLinks
RewriteRule ^(.*).htm$ index.php?p=$1 [L]
RewriteRule ...
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 ...
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 ...
0
votes
1answer
151 views
Convert lighttpd rewrite rule to nginx
I have the following simple lighttpd rewrite rule:
$HTTP["host"] =~ "^(app\.mydomain\.com)$" {
url.rewrite-once = (
"^[^.]*$" => "controller.php/$1"
)
}
I am trying to port ...
1
vote
2answers
215 views
Convert mod_rewrite Apache to Nginx?
I'm newbie on internet programming. I want to switch Apache to Nginx web server but still problem on Nginx mode rewrite.
My website location on /home/user/public_html/read/ and my previous .htaccess ...
0
votes
1answer
126 views
Need help translating this htaccess rewrite rule to Nginx
Hi – I've been struggling with this for days. It seems simple but I just can't get it done.
I have a site developed in CakePHP. There's a script that responds to /css/profiles/g/whatever.css ...
0
votes
2answers
701 views
nginx redirect all directories except one
I'm using nginx 1.0.8 and I'm trying to redirect all visitors from www.mysite.com/dir to google search page http://www.google.com/search?q=dir where dir is a variable, however if dir=="blog"( ...
0
votes
0answers
163 views
How to translate apache rewrite rules to nginx's?
How would I rewrite this NginX rules to Apache mod_rewrite?
I've seen plenty of questions about going apache -> nginx, but not the other way around.
# Rewrite rules at webroot level
...
0
votes
1answer
224 views
.htaccess - Redirect for all users, except me
Please help me with the htaccess. I tried to create a rule whereby a user visiting a particular web page is automatically redirected to another page on the site, but if I visit it page, this rule does ...
0
votes
0answers
40 views
Converting Apache rewrite to nginx including several rewrite Conditions
How do I translate those rewrite into nginx? I tried for hours and it gets pretty urgent...
RewriteCond %{QUERY_STRING} !^(landing|comment=|show=).*$
RewriteCond %{REQUEST_FILENAME} !-f
...
0
votes
1answer
351 views
Convert rewrite rules to nginx conf for typo3
I have the followin rewrite rules. They are needed to get CoolURI for typo3 working on an apache server. Now I want to do the same for nginx server.
RewriteEngine On
RewriteRule ...
0
votes
1answer
267 views
Convert apache rewrites to nginx rewrites [closed]
We're about to move our application from Apache to NginX. Our application is a nifty user of mod_rewrite to make seo friendly urls. But for some reason, we're not able to fully transform the rewrites ...
5
votes
1answer
270 views
Need help converting Apache2 Rewrite rules to nginx
I've managed to convert most of them, but I'm struggling a bit with these two -
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,QSA,L]
RewriteRule ...
0
votes
3answers
991 views
Converting Apache htaccess rewrite condition to nginx
I am trying to port this Apache Rewrite rule to be used on a nginx Webserver.
RewriteBase /srv/www/htdocs
RewriteCond %{REQUEST_URI} ^/(files.*)$
RewriteRule ^(.*)$ %1 [L]
I don't know how to ...
0
votes
2answers
263 views
How can I redirect all directories to root using PATH variables in Nginx (switching from Apache)?
I run the following in Apache. Our IT guy recommended Nginx over Apache to optimize web traffic. But modrewrite doesn't work the same way on Nginx.
Essentially I'm interested in converting all ...
3
votes
2answers
585 views
Apache Rewrite to Nginx Rewrite
I have the following apache rewrite rule:
RewriteEngine On
RewriteRule ^id/([^/\.]+)$ item.php?id=$1 [L]
and I need to be able to use it with Nginx. It is meant to so that someone can go to ...
0
votes
0answers
119 views
Nginx + apache user friendly urls
I would like to rewrite the urls in user friendly way. For example I need to rewrite some adress like mydomain.com/brand/nike to mydomain.com/index.php?section=gallery&brand=nike
So I will write ...
2
votes
1answer
1k views
nginx proxy and 404 redirect
Hi I would like configure my nginx server to proxy for amazon S3 and do something like mod_rewrite in apache - if proxy for amazon is 404 (file does'nt exist on amazon) then redirect me to my local ...






