⬅︎ Back to Be very careful with your add_header in Nginx! You might make your site insecure
location /blog { try_files $uri $uri/ /blog/index.php$is_args$args; add_header X-Status "Works" always; }It does not work. The header does not show up. Help?
Comment
location /blog {
try_files $uri $uri/ /blog/index.php$is_args$args;
add_header X-Status "Works" always;
}
It does not work. The header does not show up. Help?