Configurar mod_rewrite o url friendly en nginx

Por admin-dayscript, 25 Mayo, 2015
server {

location / {
        index index.php index.html index.htm;
           }

   location /../site/ {
          index index.php index.html index.htm;
          try_files $uri $uri/ /.../site/index.php?$args;
    }

  }

Comentarios