Hi , i have droplet hosting on “example.com” and shared hosting on “blog.example.com” i want redirect it by Apache proxy “blog.example.com” to main “example.com/blog/” and keep blog.example.com on shared hosting and open it by “example.com/blog/” I know this question has been asked at least a million times, but I tried all the solutions but still doesn’t work with me
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi, There are two configuration methods to achieve your main goal (proxying):
The more convenient and recommended method is virtual host block configuration. Due to official Apache docs, this method is simpler and more efficient. However, because your prospective proxy is actually on shared hosting, it is quite likely that the only way you could configure proxy is with htaccess file. So, before you start, ensure with your hosting provider which configuration method is available for you. Anyway, let’s go through both of these configuration methods.
1. Vhost (an abbreviation for virtual host) configuration.
Prerequisites.
The configuration of vhost on blog.example.com could look like that:
Reverse proxy configuration is highlighted. Some words of explanation for this configuration.
ProxyPass "/" "http://example.com/blog/"
makes your blog.example.com a reverse proxy for example.com/blog/.ProxyPassReverse "/" "http://example.com/blog/"
is needed in case of any redirection made on backend host (example.com), to ensure that proxy (blog.example.com) handles it correctly. For example, you redirected http://example.com/blog/rules/ to http://example.com/blog/rules-gdpr/. Requesting http://blog.example.com/rules you could get different results in your web browser’s address bar depending on ProxyPassReverse directive presence:2. Htaccess configuration.
Prerequisites.
Create (or modify if it already exists) an .htaccess file in web root directory of blog.example.com vhost. Note that this file is hidden (its name starts with a dot sign). If you use e.g. FTP client to transfer files to blog.example.com, make sure the visibility of hidden files is turned on in its configuration settings. Here are the directives you need to put into your .htaccess file:
Some explanation for the content of this file.
RewriteEngine On
enables the runtime rewriting engine.RewriteRule ^(.*) http://example.com/blog/$1 [P]
defines proxy behavior. Any requested URL^(.*)
will be rewritten as variable$1
to the end of the stringhttp://example.com/blog/
, creating new, absolute URL. The request will be redirected due to newly created URL but redirecting server will be acting as proxy, as it is defined with flag[P]
.Header edit Location ^http://example\.com/blog/(.*) http://blog.example.com/$1
is an equivalent of ProxyPassReverse directive in vhost configuration. In case of any redirection on backend host, proxy receives HTTP location header field containing new URL of redirected resource. OurHeader
directive replaces URL started with http://example.com/blog/ with http://blog.example.com/. Thanks to that our proxy behavior is consistent.Do not forget to restart Apache service after modifying the configuration :)