Converting Rewrites to Nginx

Miguel Clara miguelmclara at gmail.com
Tue Mar 18 13:50:54 UTC 2014


location / {
    try_files $uri $uri/ /index.php?url=$1 last;
}


Maybe what you want here is:
location / {
    try_files $uri $uri/ @rewrite;
}
location @rewrite {
    rewrite ^/(.*)$ /index.php/$1;
}




On Tue, Mar 18, 2014 at 12:05 PM, parkerj <nginx-forum at nginx.us> wrote:

> I have been trying to convert the following htaccess rules to nginx with no
> luck.
>
> RewriteCond %{REQUEST_FILENAME} !-d
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteCond %{REQUEST_FILENAME} !-l
> RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
>
> I've tried:
>
> location / {
>   if (!-e $request_filename){
>     rewrite ^(.+)$ /index.php?url=$1 last;
>   }
> }
>
> and I've also tried:
>
> location / {
>     try_files $uri $uri/ /index.php?url=$1 last;
> }
>
> None seem to work. Any help with this is greatly appreciated.
>
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?2,248446,248446#msg-248446
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20140318/503a94b9/attachment.html>


More information about the nginx mailing list