How can I get wordpress working when I'm behind a reverse proxy?
Answer Posted / Anupama Tomar
To get WordPress working behind a reverse proxy, you will need to configure the server settings and possibly add rewrite rules in your .htaccess file. Here's an example for Nginx: nn`server { listen 80; server_name example.com; location / { proxy_pass http://localhost:8080; } }`
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers