0

私はこれを得た :

-- root           # example.com 
   profile        # example.com/profile

----- subdomain1  # subdomain1.example.com
----- subdomain2  # subdomain2.example.com
----- subdomain3  # subdomain3.example.com

問題は、subdomain1.example.com/profile または subdomain1.example.com/about からのリクエストが常に example.com/profile にリダイレクトされる場合です。

サブドメインからのすべてのリクエストを希望します。例: subdomain1.example.com/profile または subdomain1.example.com/profile は、ルート ドメイン ex: example.com/profile にリダイレクトされない現在のリクエストにリダイレクトされます。

.htaccess で作成するには?

4

1 に答える 1

0

サブドメインの DocumentRoot をそのサブドメインのルートに変更する必要があります。たとえば、/path/to/subdomain1.example.com は subdomain1 の DocumentRoot である必要があります。これは、httpd.conf ファイルで行うことができます。どんな種類のサーバーがありますか?

<VirtualHost subdomain1> 
ServerName subdomain1.example.com
ServerAdmin you@subdomain1.example.com
ServerAlias subdomain1.example.com     
DocumentRoot /path/to/subdomain1.example.com  
</VirtualHost> 
于 2012-11-10T15:07:02.187 に答える