Welcome! Log In Create A New Profile

Advanced

Re: Requests ending with / (slash) are returning 404

April 07, 2010 06:50AM
On Wed, Apr 7, 2010 at 5:40 PM, Leonardo Crespo <leo@leocrespo.com> wrote:
> I'd to enable the php extension (/foo/page.php)  when the url is
> domain.com.au/portal/admin*
>
> Here's my failed attempt and the error I'm getting. I'll make sure to
> keep reading as much as possible and not to ask questions that are
> already answered.
>
> -------------------
> location / {
>        try_files $uri @php;
> }
> location @php {
>        try_files $uri.php ${uri}index.php =404;
>
>        fastcgi_pass 127.0.0.1:9000;
>        fastcgi_intercept_errors on;
>        fastcgi_index index.php;
>        include /usr/local/nginx/conf/fastcgi_params;
>        fastcgi_param SCRIPT_FILENAME
> /home/public_html/domain.com.au/public/$fastcgi_script_name;
> }
>
> location ~ \.php$ {
> #if the uri is not /portal/admin, return 404, disabling the php
> extension on the rest of the site
>        if (!$uri ~* /portal/admin) {
>                return 404;
>        }
> }
> -----------------
> Starting nginx: [emerg]: invalid condition "!$request_uri" in
> /usr/local/nginx/sites-enabled/domain.com.au:37
>

location ~ \.php$ {
return 404;
}
location ~ ^/portal/admin/.*\.php$ {
...fastcgi stuff...
}

> Not sure if the syntax is valid and also if I'm putting it in the
> right place as to avoid conflict with fastcgi.
>


--
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org

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

Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 04:28AM

Re: Requests ending with / (slash) are returning 404

Igor Sysoev April 07, 2010 04:44AM

Re: Requests ending with / (slash) are returning 404

edogawaconan April 07, 2010 04:54AM

Re: Requests ending with / (slash) are returning 404

Igor Sysoev April 07, 2010 05:02AM

Re: Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 05:02AM

Re: Requests ending with / (slash) are returning 404

Igor Sysoev April 07, 2010 05:06AM

Re: Requests ending with / (slash) are returning 404

edogawaconan April 07, 2010 05:08AM

Re: Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 05:14AM

Re: Requests ending with / (slash) are returning 404

edogawaconan April 07, 2010 05:20AM

Re: Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 05:30AM

Re: Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 05:34AM

Re: Requests ending with / (slash) are returning 404

Igor Sysoev April 07, 2010 05:50AM

Re: Requests ending with / (slash) are returning 404

Igor Sysoev April 07, 2010 05:48AM

Re: Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 06:28AM

Re: Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 06:44AM

Re: Requests ending with / (slash) are returning 404

edogawaconan April 07, 2010 06:50AM

Re: Requests ending with / (slash) are returning 404

leocrespo April 07, 2010 07:10AM

Re: Requests ending with / (slash) are returning 404

Igor Sysoev April 07, 2010 05:24AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 145
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 500 on July 15, 2024
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready