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 | Show 3 more comments1 Answer
Reset to default 0Try 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!
/
is angular project and/blog
is wordpress – Mr.Bhat Commented Apr 1, 2020 at 15:48post name
page is redirected todev.site
. – Mr.Bhat Commented Apr 1, 2020 at 18:48dev.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