在其他服务器上将 www.example.com/blog 重定向到 blog.example.com
Redirect www.example.com/blog to blog.example.com on other server
我有两台 ec2 服务器,其中一台是 运行 我的网站,另一台是带子域的博客。两者都安装了 apache2。
如何将 http://www.example.com/blog
重定向到 blog.example.com
?
您可以使用 mod_rewrite。
在包含
的根目录中创建 .htaccess 文件
RewriteEngine On
RedirectMatch 301 ^/blog http://blog.example.com/
我有两台 ec2 服务器,其中一台是 运行 我的网站,另一台是带子域的博客。两者都安装了 apache2。
如何将 http://www.example.com/blog
重定向到 blog.example.com
?
您可以使用 mod_rewrite。
在包含
的根目录中创建 .htaccess 文件RewriteEngine On
RedirectMatch 301 ^/blog http://blog.example.com/