使用.htaccess从子域子文件夹重定向到根子文件夹

时间:2013-12-07 07:38:09

标签: php apache .htaccess mod-rewrite redirect

我的域“ example.com ”被重定向(从cPanel)到“ subdomain.example.com ”。 “ subdomain.example.com ”链接到根子文件夹“ example.com/blog ”。到目前为止一切都很好。

现在我想在适当的根子文件夹“ example.com/moodle ”中安装Moodle,并链接子域URL“ subdomain.example.com/moodle ”到该子文件夹,同时将此URL保留在地址栏中。

我在我的“ subdomain.example.com/.htaccess ”文件中尝试了这个,但没有成功:

RewriteCond %{HTTP_HOST} ^subdomain\.example\.com/moodle
RewriteRule ^(.*)$ http://example.com/moodle/$1 [R=301]

我该如何解决这个问题?

0 个答案:

没有答案