.htaccess - 从子文件夹到根目录的RewriteRule,无需重定向

时间:2012-01-27 12:08:18

标签: .htaccess subdomain root

我正在.htaccess寻找改变的东西 subdomain.website.com/page/titlewebsite.com/subdomain/title

没有重定向到网站,同时将URL保留在地址栏中。

在子文件夹中调用此.htaccessublic_html/subdomain。那么如何在不使用重定向的情况下返回该文件夹public_html

谢谢:)

1 个答案:

答案 0 :(得分:-1)

以下是使用代理的一种方法,它将使用户地址栏中的URL保持不变。

RewriteCond %{HTTP_HOST} ^subdomain\.website\.com$ [NC] 
RewriteRule ^page/title$ http://website.com/subdomain/title [P,NC]