Closed
Description
Hello folks,
I'm having a hard time getting my WP deployment to properly work without any broken links trying to have it served under a subdirectory /blog.
I have used info from Codex to have those changes incorporated in the image. but no success so far.
Also in my k8s ingress i have this configuration snippet which handles the rewriting rules as follows,
nginx.ingress.kubernetes.io/configuration-snippet: |
rewrite /blog/(.*) /$1 break;
rewrite /wp-admin(.*) /blog/wp-admin$1 break;
I still have those 404 when trying to publish new posts.
Any guidance is extremely appreciated.