Welcome! Log In Create A New Profile

Advanced

Re: Convert lighttpd rewrite rule to nginx

Edho Arief
July 24, 2012 01:40AM
On Tue, Jul 24, 2012 at 8:23 AM, justin <nginx-forum@nginx.us> wrote:
> I have the following simple lighttpd rewrite rule:
>
> $HTTP["host"] =~ "^(app\.mydomain\.com)$" {
> url.rewrite-once = (
> "^[^.]*$" => "controller.php/$1"
> )
> }
>
> I am trying to port this rule to nginx and have the following:
>
> server {
> listen 80;
>
> server_name app.mydomain.com;
>
> if ($host = 'app.mydomain.com') {
> rewrite ^[^.]*$ controller.php/$1 last;
> }
>
> root /srv/www/domains/app.mydomain.com;
>
> index index.php;
>
> access_log /var/log/nginx/domains/app.mydomain.com/access.log;
> error_log /var/log/nginx/domains/app.mydomain.com/error.log;
>
> include /etc/nginx/excludes.conf;
> include /etc/nginx/php.conf;
> include /etc/nginx/expires.conf;
> }
>
> The problem is that the rewrite rule for nginx is not working correctly?
> Any idea what I am doing wrong?
>

Maybe post the content of php.conf. Also, the if test is not needed.

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Convert lighttpd rewrite rule to nginx

Anonymous User July 23, 2012 09:23PM

Re: Convert lighttpd rewrite rule to nginx

Edho Arief July 24, 2012 01:40AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 24, 2012 02:08AM

Re: Convert lighttpd rewrite rule to nginx

Edho Arief July 24, 2012 02:44AM

Re: Convert lighttpd rewrite rule to nginx

Igor Sysoev July 24, 2012 02:50AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 25, 2012 08:47PM

Re: Convert lighttpd rewrite rule to nginx

Igor Sysoev July 26, 2012 12:32AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 26, 2012 01:00AM

Re: Convert lighttpd rewrite rule to nginx

Edho Arief July 26, 2012 01:58AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 26, 2012 02:05AM

Re: Convert lighttpd rewrite rule to nginx

Edho Arief July 26, 2012 02:12AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 26, 2012 03:04AM

Re: Convert lighttpd rewrite rule to nginx

Edho Arief July 26, 2012 03:14AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 26, 2012 03:23AM

Re: Convert lighttpd rewrite rule to nginx

António P. P. Almeida July 26, 2012 03:38AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 26, 2012 03:42AM

Re: Convert lighttpd rewrite rule to nginx

Edho Arief July 26, 2012 03:48AM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User July 26, 2012 08:52PM

Re: Convert lighttpd rewrite rule to nginx

Anonymous User August 03, 2012 07:40PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 292
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready