我正在.htaccess
寻找改变的东西
subdomain.website.com/page/title
至
website.com/subdomain/title
没有重定向到网站,同时将URL保留在地址栏中。
在子文件夹中调用此.htaccess
。 ublic_html/subdomain
。那么如何在不使用重定向的情况下返回该文件夹public_html
。
谢谢:)
答案 0 :(得分:-1)
以下是使用代理的一种方法,它将使用户地址栏中的URL保持不变。
RewriteCond %{HTTP_HOST} ^subdomain\.website\.com$ [NC]
RewriteRule ^page/title$ http://website.com/subdomain/title [P,NC]