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
String::RewritePrefix(3)				User Contributed Perl Documentation				  String::RewritePrefix(3)

NAME
String::RewritePrefix - rewrite strings based on a set of known prefixes VERSION
version 0.007 SYNOPSIS
use String::RewritePrefix; my @to_load = String::RewritePrefix->rewrite( { '' => 'MyApp::', '+' => '' }, qw(Plugin Mixin Addon +Corporate::Thinger), ); # now you have: qw(MyApp::Plugin MyApp::Mixin MyApp::Addon Corporate::Thinger) You can also import a rewrite routine: use String::RewritePrefix rewrite => { -as => 'rewrite_dt_prefix', prefixes => { '' => 'MyApp::', '+' => '' }, }; my @to_load = rewrite_dt_prefix( qw(Plugin Mixin Addon +Corporate::Thinger)); # now you have: qw(MyApp::Plugin MyApp::Mixin MyApp::Addon Corporate::Thinger) METHODS
rewrite String::RewritePrefix->rewrite(\%prefix, @strings); This rewrites all the given strings using the rules in %prefix. Its keys are known prefixes for which its values will be substituted. This is performed in longest-first order, and only one prefix will be rewritten. If the prefix value is a coderef, it will be executed with the remaining string as its only argument. The return value will be used as the prefix. AUTHOR
Ricardo Signes <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Ricardo Signes. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.18.2 2013-10-15 String::RewritePrefix(3)
All times are GMT -4. The time now is 02:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy