What is WordPress' Full URL for Multisite? Is there even such a concept? I am referring to full notation equivalents of this pattern:
- .http://www.website.com/blog_1/lang/post_222/
- .http://www.website.com/blog_2/lang/post_333/
- .http://www.website.com/blog_3/lang/post_444/
Are these processed or converted to something like these? I would assume that they are so I asked the question.
- .http://www.website.com/index.php?param=/blog_1/lang/post_222/
- .http://www.website.com/index.php?param=/blog_2/lang/post_333/
- .http://www.website.com/index.php?param=/blog_3/lang/post_444/
Some Background:
I'm going to need it to perform URL rewriting using NGINX that includes the subsites' names (blog_1, blog_2, blog_3). Like this:
Browser URL: .http://www.website.com/de/news/post_444/ -> Backend URL: .http://www.website.com/blog_news/de/post_444/
I am able to rewrite the URL when it reaches NGINX but to get the result of the "new" URL, I can either do the following:
- proxy_pass. But this is going to trigger a separate request, buffer it in the NGINX machine and serve it back as the response to the original request.
- Pass the blog name and parameters to a WordPress index file e.g. /index.php?param=/blog_name/etc/.
I would appreciate any help or any advice you can share.
Thanks very much!