Hello is the first time that NGINX uses, and I’m turning my .htaccess to
use
it. Unfortunately the access is really long, and it is my first time I
do
this.
I converted the .htaccess with nginx online tool, but unfortunately,
load
the conf changed, I restart the nginx service.
When I click a link on the page, it automatically downloads Him the .php
files.
Copy-pasting configuration of using pre-cooked one is always a bad idea
since you do not understand what you are dealing with.
The same applies to automatic conversion tools since the paradigm behind
the Apache Web server is totally different from the one from nginx:
there
is no one-to-one relationship (bijection) between the way to redact
Apache
configuration directives and nginx’ ones, so the very idea of such a
tool
is flawed. Too bad people keep trying to provide their attempt at it
without thinking about that first.
You deleted the first pastebins you provided. People reading the thread
entirely thus cannot get a hang on your initial question. If you do the
same about the last one, the whole thread will transform into junk for
future reference.
Now, about the configuration you provided in the last pastebin:
For the list of console names, a single rewrite at server level
would
have proven enough. You could have transformed it into a regex
location +
rewrite to take advantage of the precedence of location blocks
depending on
their type/modifiers
You could have grouped all the location blocks doing a similar
jobs
together
You do not provide a location dealing with the index.php file, so
the
default behavior would be for nginx to serve that file
You do not provide the whole configuration as there is no http
block
(which contains the server ones) nor do you provide what is in the
included
files at the end of it (particularly the one php.conf one whoch could
prove
useful)
Please take some time to read nginx docs http://nginx.org/en/docs/ to
get a hang on the basics. There even is a ‘Beginner’s Guide’ to help
you
through.
Generic tip: it is usually a good idea to prepare a minimal
configuration
depicting your problem rather than sending a huge, incomplete,
configuration fil which is, in the end, useless. You are not encouraging
people to help. Do your homework to show people you tried solving your
own
problem and saving as much of their time as possible.