的.htaccess(或+ CakePHP的)htaccess、CakePHP

由网友(断笔画墨)分享简介:我想知道我怎么可以配置一个子域到一个网站。例www.domain.comsubdomain.domain.com I would like to know how can I configure a subdomain to a website.Examplewww.domain.comsubdomain...

我想知道我怎么可以配置一个子域到一个网站。 例 www.domain.com subdomain.domain.com

I would like to know how can I configure a subdomain to a website. Example www.domain.com subdomain.domain.com

我如何配置htaccess的访问文件夹的子域,并用它

How can I configure the htaccess to access the folder subdomain and use it

public_html
 app
 lib
 plugins
 vendors...
 subdomain
    app
    lib...

这是我的htaccess

this is my htaccess

 <IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$ app/webroot/    [L]
   RewriteRule    (.*) app/webroot/$1 [L]
 </IfModule>

感谢

推荐答案

在的public_html / htaccess的:

in public_html/.htaccess:

<IfModule mod_rewrite.c>
  RewriteEngine on

  RewriteCond    %{REQUEST_FILENAME} !subdomain/
  RewriteRule    ^$ app/webroot/    [L]   

  RewriteCond    %{REQUEST_FILENAME} !subdomain/
  RewriteRule    (.*) app/webroot/$1 [L]

</IfModule>
阅读全文

相关推荐

最新文章