Click on the jump link does not jump, always show the home page
-
Click on the jump link does not jump, always show the home page,but the url is right.
my env is :
my nginx virtual conf isserver { listen 80; server_name shop.gongzhu.dev *.shop.gongzhu.dev; root "C:/laragon/www/shop.gongzhu/"; index index.html index.htm index.php; location / { try_files $uri $uri/ /index.php$is_args$args; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass php_upstream; #fastcgi_pass unix:/run/php/php7.0-fpm.sock; } charset utf-8; location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } location ~ /\.ht { deny all; } }
when change nginx to apache, everything is ok!!!
-
@singi2016cn : How about restarting your computer and change back to Nginx?
-
@leokhoa
thank you.
restarting don't work.