最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

404 error - Wordpress post-name permalink redirects to site.com

programmeradmin3浏览0评论

When permalink is set to plain everything works fine. but when I change permalink to post name only Wordpress home page(dev.site/blog) works fine, but for other pages(e.g., dev.site/blog/first-page) it will be redirected to dev.site.

server {
    listen 80;
    listen [::]:80;

    root /var/www/wordpress-site;
    index index.php index.html index.htm index.nginx-debian.html;

    server_name dev.site www.dev.site;

    location = /favicon.ico { log_not_found off; access_log off; }
    location = /robots.txt { log_not_found off; access_log off; allow all; }

    location /blog {
            alias /var/www/wordpress-site/;
            try_files $uri $uri/ /blog/index.php?$args;

            location ~ \.php$ {
                    include snippets/fastcgi-php.conf;
                    include fastcgi_params;
                    fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
                    fastcgi_param SCRIPT_FILENAME $request_filename;
            }
    }

    # angular project

    location / {
            root /home/user/angular-project;
            try_files $uri $uri/ /index.html;
    }

    location ~ /\.ht { deny all; }
}

I tried changing try_files, but still doesn't work

Thank you :)

When permalink is set to plain everything works fine. but when I change permalink to post name only Wordpress home page(dev.site/blog) works fine, but for other pages(e.g., dev.site/blog/first-page) it will be redirected to dev.site.

server {
    listen 80;
    listen [::]:80;

    root /var/www/wordpress-site;
    index index.php index.html index.htm index.nginx-debian.html;

    server_name dev.site www.dev.site;

    location = /favicon.ico { log_not_found off; access_log off; }
    location = /robots.txt { log_not_found off; access_log off; allow all; }

    location /blog {
            alias /var/www/wordpress-site/;
            try_files $uri $uri/ /blog/index.php?$args;

            location ~ \.php$ {
                    include snippets/fastcgi-php.conf;
                    include fastcgi_params;
                    fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
                    fastcgi_param SCRIPT_FILENAME $request_filename;
            }
    }

    # angular project

    location / {
            root /home/user/angular-project;
            try_files $uri $uri/ /index.html;
    }

    location ~ /\.ht { deny all; }
}

I tried changing try_files, but still doesn't work

Thank you :)

Share Improve this question edited Apr 1, 2020 at 18:55 Mr.Bhat asked Apr 1, 2020 at 14:33 Mr.BhatMr.Bhat 1113 bronze badges 8
  • Are these sites using the same codebase and database? WP will redirect to the current canonical URL of a post to avoid duplication and SEO issues – Tom J Nowell Commented Apr 1, 2020 at 15:14
  • They are not using same codebase or database . / is angular project and /blog is wordpress – Mr.Bhat Commented Apr 1, 2020 at 15:48
  • I mean site vs dev.site, you said posts on dev.site redirect to site, can you edit your question to be clearer, e.g. use example full URLs – Tom J Nowell Commented Apr 1, 2020 at 16:44
  • When I change permalink to post name page is redirected to dev.site. – Mr.Bhat Commented Apr 1, 2020 at 18:48
  • Oh so all posts redirect to the root, is it a redirect, or are all the permalinks dev.site? What kind of redirect is it? This doesn't sound like an Apache issue, it sounds like something in PHP/WordPress is doing this. Disable all plugins and switch to the default theme – Tom J Nowell Commented Apr 1, 2020 at 21:08
 |  Show 3 more comments

1 Answer 1

Reset to default 0

Try separating the second location block:

location /blog { alias /var/www/wordpress-site/; try_files $uri $uri/ /blog/index.php?$args; }

location ~ \.php$ { fastcgi_split_path_info ^(/blog)(/.*)$; include snippets/fastcgi-php.conf; include fastcgi_params; fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_param SCRIPT_FILENAME $request_filename; }

Hope this helps!

发布评论

评论列表(0)

  1. 暂无评论