Optimize rewrite
    Anto 
    potxoka at gmail.com
       
    Sun Feb 24 21:17:38 UTC 2013
    
    
  
hello
I have a script that works with apache but I want to migrate to nginx, I
have this rule, but maybe you can do differently optimized.
## HTACCESS
<IfModule mod_rewrite.c>
    RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^(.*)$ index.php?url=$1 [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*)$ index.php [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} -s
RewriteRule ^(.*)$ index.php [QSA,NC,L]
</IfModule>
## NGINX
location / {
        rewrite    ^/(.*)/(.*)$      /$1/index.php?url=$2;
    }
Thanks !!
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20130224/c7e4da5e/attachment.html>
    
    
More information about the nginx
mailing list