Мой Magento может загружать только первую главную страницу, а все страницы - 404. Проблема с конфигурацией сервера Nginx

Я пытаюсь запустить Magento 2 на WSL, веб-сервере ubuntu Nginx, localhost Я могу загрузить только первую первую страницу моего веб-сайта, но остальные страницы 404 Не Найдено. Я изменяю только файл / etc / nginx / sites-available / default. Поскольку я использую localhost и только 1 сайт. Думаю, мне не нужно создавать еще один. Может ли кто-нибудь помочь мне узнать, что не так с моим файлом конфигурации? / и т.д. / nginx / сайты-доступные / по умолчанию. Я не знаком с Nginx, я много дней пробовал гуглить, но все еще не могу найти решения.

Я признателен, если кто-нибудь может помочь.

  # Read up on ssl_ciphers to ensure a secure configuration.
        # See: https://bugs.debian.org/765782
        #
        # Self signed certs generated by the ssl-cert package
        # Don't use them in a production server!
        #
        # include snippets/snakeoil.conf;

        root /var/www/html/Magento2_PAUL;

        # Add index.php to the list if you are using PHP
        index index.php;

        server_name _;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                try_files $uri $uri/ =404;
                # proxy_pass http://localhost:8080;
                # proxy_http_version 1.1;
                # proxy_set_header Upgrade $http_upgrade;
                # proxy_set_header Connection 'upgrade';
                # proxy_set_header Host $host;
                # proxy_cache_bypass $http_upgrade;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
         include snippets/fastcgi-php.conf;
        #
        #       # With php7.0-cgi alone:
        #       fastcgi_pass 127.0.0.1:9000;
        #       # With php7.0-fpm:
               fastcgi_pass unix:/run/php/php7.2-fpm.sock;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #       deny all;
        #}
}


# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
#       listen 80;
#       listen [::]:80;
#
#       server_name example.com;
#
#       root /var/www/example.com;
#       index index.html;
#
#       location / {
#              try_files $uri $uri/ =404;
#       }
#
0
задан 29 October 2020 в 07:41
1 ответ

Используйте это

try_files $uri $uri/ /index.php?$args;

вместо

try_files $uri $uri/ =404;
1
ответ дан 29 October 2020 в 07:04

Теги

Похожие вопросы