使用子目录文件的主域的htaccess

时间:2014-12-17 20:52:05

标签: .htaccess mod-rewrite redirect dns subdomain

我想问你,是否有人可以帮助我。

我有一个域http://domain.com和一个子域http://new.domain.com

我的文件结构是常规的(没什么特别的):

  • 的public_html /
    • file.php
    • file1.php
    • 的index.php
    • 新/
      • file.php
      • file1.php
      • 的index.php

问题是:我是否可以使用某些htaccess规则将我的public_html / new目录中的文件用于我的域名? 当然最终的目标是不要用我的子域名网址改变我的我的网址。

类似于:当有人打开doman.com从new.domain.com看我的子目录中的文件“new”(这意味着要查看我的子域名网站...)

谢谢。

1 个答案:

答案 0 :(得分:0)

你的意思是这样的? (在public_html文件夹中的htaccess文件中):

RewriteEngine On
RewriteRule ^(?!new/)(.*)$ /new/$1 [L]