Sponsored Content
Top Forums Web Development activecampaign rewrite rules for nginx webserver Post 302540074 by unimaxlin on Tuesday 19th of July 2011 01:19:48 PM
Old 07-19-2011
activecampaign rewrite rules for nginx webserver

Could you help me to write nginx rewite rules for activecampaign at present they only have a apache rewrite rules which to be put in .htaccess

Code:
cat .htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# KB
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/kb

RewriteRule . /kb/index.php [L]

# KB DESKS WITHOUT SLASHES
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/desk/([^/]+)/kb$

RewriteRule (.*) $1/ [R=301,L]

# KB DESKS
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/desk/([^/]+)/kb

RewriteRule desk/([^/]+)/kb(.*) /kb$2 [L]


# HD DESKS WITHOUT SLASHES
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/desk/([^/]+)$

RewriteRule (.*) $1/ [R=301,L]


# HD DESKS
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/desk/([^/]+)

RewriteRule desk/([^/]+)(.*) $2 [L]


# HD
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

</IfModule>


i have tried something but it does`nt work

Code:
##1 kb
location /kb { 

if (!-f $request_filename) { 

rewrite . /index.php last;
}

if (!-d $request_filename) {

rewrite . /index.php last;

}

if ( $request_uri) {

rewrite . /index.php last;
}
}



##2 KB DESKS WITHOUT SLASHES

location /desk { 

if (!-f $request_filename) { 

rewrite (.*) $1/ permanent;
}

if (!-d $request_filename) {

rewrite (.*) $1/ permanent;

}

if ( ^/([^/]+)/kb$ $request_uri) {

rewrite (.*) $1/ permanent;
}
}



location /desk { 

if (!-f $request_filename) { 

rewrite /([^/]+)/kb(.*) /$2 last; 
}

if (!-d $request_filename) {

rewrite /([^/]+)/kb(.*) /$2 last; 

}

if ( /([^/]+)/kb $request_uri) {

rewrite /([^/]+)/kb(.*) /$2 last; 
}
}

#3 HD DESKS WITHOUT SLASHES

location /desk { 

if (!-f $request_filename) { 

rewrite (.*) $1/ last;
}

if (!-d $request_filename) {

rewrite (.*) $1/ last;

}

if ( ^/([^/]+)$ $request_uri) {

rewrite (.*) $1/ last;
}
}

#4 HD DESKS

location /desk { 

if (!-f $request_filename) { 

rewrite /([^/]+)(.*) $2 last;
}

if (!-d $request_filename) {

rewrite /([^/]+)(.*) $2 last;

}

if ( ^/([^/]+ $request_uri) {

rewrite /([^/]+)(.*) $2 last;
}
}

# 5 HD
location / { 

if (!-f $request_filename) { 

rewrite . /index.php last;
}

if (!-d $request_filename) {

rewrite . /index.php last;

}
}

Share

Last edited by pludi; 07-19-2011 at 06:55 PM..
 

8 More Discussions You Might Find Interesting

1. Web Development

Rewrite rules to change “link.html?hl=es” to “/es/link.html” etc?

Hey! Does anyone know how to create rewrite rules to change: “link.html?hl=en” to “/en/link.html” “link.html?hl=jp” to “/jp/link.html” “link.html?hl=es” to “/es/link.html” etc? Where "link.html" changes based on the page request? (2 Replies)
Discussion started by: Neo
2 Replies

2. Web Development

Apache rewrite rules.

Hi, I am new to Apache but I have requirement as follows. if the url is http://images/data1/templates/ it should redirect to http:/172.20.224.23/templates/ if the url doesn't have "data1/templates" (mean http://images/) it should redirect to http://images:8080/. I tried as below ... (3 Replies)
Discussion started by: sambadamerla
3 Replies

3. Debian

How to update Nginx in Debian to current ver?

I did a fresh install of nginx on a debian server. When I check the version of nginx, it reports 0.7.67 However, the current stable version of Nginx is 1.0.5 from what I have read. How can I update my Nginx whilst leaving my server operational? I am a relative newb, so please do... (1 Reply)
Discussion started by: bugeye
1 Replies

4. Web Development

Rewrite Rules in shell script

Hi, Looking for a shell script to redirect the below URLS... 1) http://domain.site.com/exmp/http://www.example.com/ofxm/supp/un_headfoot?un_head=yes redirects to http://domain.site.com/header.html 2) http://domain.site.com/exmp/http://www.example.com/ofxm/supp/un_headfoot?un_foot=yes... (4 Replies)
Discussion started by: Paulwintech
4 Replies

5. UNIX for Dummies Questions & Answers

How to configure NGINX?

Hi , I installed NGINX and when i i go see the browser it says welcome If you see this page, the nginx web server is successfully installed and working. Further configuration is required. is there any kind of document to configure that(i am completly new for this) (1 Reply)
Discussion started by: vikatakavi
1 Replies

6. UNIX for Dummies Questions & Answers

NGINX Setup

Here is my issue: I have two web servers hosting web services (Server A and Server B) I'd like to configure NGINX to achieve load balancing. Do I install NGINX on a third new server, or is it something that gets installed on Server A and Server B? Please share some information. ... (0 Replies)
Discussion started by: ramky79
0 Replies

7. Red Hat

Security module in nginx

hi By the command yum install nginx Want a security modules Security modules such as virtual hosts I apply Do you know a quick solution? thanks (0 Replies)
Discussion started by: mnnn
0 Replies

8. Fedora

How to wrap nginx/uwsgi around Flask?

I've SSH installed a Python 3.5 application on CentOS along with uwsgi and nginx, but after doing a sudo vi /etc/nginx/nginx.conf to edit the nginx config file as per usual, the response is currently: nginx: bind() to 0.0.0.0:80 failed (98: Address already in use) these are the contents of... (0 Replies)
Discussion started by: dev5180
0 Replies
TOMOYO-PATTERNIZE(8)					  System Administration Utilities				      TOMOYO-PATTERNIZE(8)

NAME
tomoyo-patternize - utility to convert pathnames in policy into patterns SYNOPSIS
tomoyo-patternize tomoyo-patternize [configfile] DESCRIPTION
This program reads domain policy from standard input and replaces pathnames with patterns. Replacement rules are defined in /etc/tomoyo/tools/patternize.conf. The resulting policy is sent to standard output and is useful to shorten and simplify domain or exception policy. Pathnames used for domain names themselves will not be replaced. Only the first matching rule is used for any particular pathname. If a pathname does not match any rules, it is left unchanged. EXAMPLES
Replace "proc:/self/fd/0" with "proc:/self/fd/$" rewrite path_pattern proc:/self/fd/$ Replace "proc:/123/status" with "proc/$/status" rewrite head_pattern proc:/$ Replace "dev(8,1):/etc/mtab~456" with "dev(8,1):/etc/mtab~$" rewrite tail_pattern /etc/mtab~$ Replace "/tmp/phpZjk1k3" with @GROUP1 rewrite path_pattern /tmp/php?????? @GROUP1 Replace integers between 0-100 or 100-200 with @GROUP2 rewrite number_pattern 0-100 @GROUP2 rewrite number_pattern 100-200 @GROUP2 Replace loopback addresses with @LOCALHOST rewrite address_pattern 127.0.0.1 @LOCALHOST rewrite address_pattern 0:0:0:0:0:0:0:1 @LOCALHOST See the configuration file for more information on rule syntax. BUGS
If you find any bugs, send an email to <tomoyo-users-en@lists.sourceforge.jp>. AUTHORS
Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Main author. Jamie Nguyen <jamie@tomoyolinux.co.uk> Documentation and website. SEE ALSO
tomoyo-findtemp(8), tomoyo-diffpolicy(8) See <http://tomoyo.sourceforge.jp> for more information. tomoyo-tools 2.5.0 2012-04-14 TOMOYO-PATTERNIZE(8)
All times are GMT -4. The time now is 07:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy