GNU/Linux >> Linux Esercitazione >  >> Linux

Wordpress:la modifica dei permalink mi dà errori 404 su nginx

Sto usando wordpress multisito con impostazione permalink personalizzata:/%category%/%postname%/

/etc/nginx/site-available/domain.conf

Sul server{

location / {
    try_files $uri $uri/ /index.php?q=$uri$args;
}

Se il tuo root wordpress non è webroot ma http://domain.com/wordpress/:

location /wordpress/ {
    try_files $uri $uri/ /wordpress/index.php?q=$uri$args;
}

Se stai usando il vecchio wordpress con blogs.dir, aggiungi:location ^~ /blogs.dir {internal;alias /var/www/wordpress/wp-content/blogs.dir;access_log off; log_not_found disattivato; scade max;}

Controlla la configurazione di nginx:sudo nginx -t

Ricarica nginx:sudo service nginx reload

Prova anche a modificare le impostazioni del permalink.


Questi sono Apache .htaccess riscrivi le regole, ma hai dichiarato di essere su un server Nginx. Nginx non usa un .htaccess -come un file a livello di directory, tanto meno utilizza il .htaccess file stesso.. È necessario modificare la configurazione del server stesso. Il Codex ha un esempio di dettaglio:

# WordPress single blog rules.
# Designed to be included in any server {} block.

# This order might seem weird - this is attempted to match last if rules below fail.
# http://wiki.nginx.org/HttpCoreModule
location / {
    try_files $uri $uri/ /index.php?$args;
}

# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

# Directives to send expires headers and turn off 404 error logging.
location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
       access_log off; log_not_found off; expires max;
}

# Uncomment one of the lines below for the appropriate caching plugin (if used).
#include global/wordpress-wp-super-cache.conf;
#include global/wordpress-w3-total-cache.conf;

# Pass all .php files onto a php-fpm/php-fcgi server.
location ~ [^/]\.php(/|$) {
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
    if (!-f $document_root$fastcgi_script_name) {
        return 404;
    }
    # This is a robust solution for path info security issue and works with "cgi.fix_pathinfo = 1" in /etc/php.ini (default)

    include fastcgi.conf;
    fastcgi_index index.php;
#   fastcgi_intercept_errors on;
    fastcgi_pass php;
}

Ho dovuto aggiungere questo pezzo di codice sia a /sites-available/your-settings-file e /sites-enabled/your-settings-file :

server {
[...]

if (!-e $request_filename) {
    rewrite ^.*$ /index.php last;
}

[...]
}

Ora funziona per me.


Linux
  1. nginx - 413 Entità richiesta troppo grande

  2. Installa WordPress su Nginx Ubuntu

  3. Ospita WordPress in Ubuntu 20.04, Mysql 8, Ubuntu 20.04, Nginx

  4. Come far funzionare i Permalink di WordPress in Nginx

  5. Errori di installazione del plugin di WordPress

Come bloccare XML-RPC in WordPress usando Nginx/Apache

Come bloccare l'accesso a wp-admin e wp-login in Nginx/Apache

Come modificare la porta di WordPress in Apache e Nginx

Ottieni 404 permalink su lampada (usando WordPress)?

Installa WordPress con Nginx su Ubuntu 18.04

Come installare WordPress su uno stack Nginx LEMP utilizzando Ubuntu 14.04