aaPanel_Kern I have used version 7.0.2 that you instructed. However, the Nginx error not displaying 404 page still persists. All of my sites in aapanel from Laravel to Wordpress cannot display a 404 page even though I have coded that page.
----- Here is the URL Rewrite configuration for my WordPress website:
location /
{
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
----- Here is the URL Rewrite configuration for my Laravel website:
location / {
try_files $uri $uri/ /index.php?$query_string;
}