0

これはUbuntu12.04デスクトップセットアップです。
私の仮想ホストには次のものがあります:
anjanesh @ desktop:/ etc / apache2 / sites-available $ cat domain

<VirtualHost *:80>
    ServerName local.domain.com
    DocumentRoot /home/anjanesh/vhosts/domain/
    <Directory /home/anjanesh/vhosts/domain>
        Options Indexes FollowSymLinks MultiViews +ExecCGI
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>

AllowOverrideはAllに設定されています。
しかし、私の.htaccess(local.domain.com)には何も機能しません。どうしてか分かりません。

  1. ローカルホストの.htaccessは機能します。(http:// locahost / anjanesh)
  2. / home / anjanesh / vhostsは、実際には/ home / anjanesh / Dropbox/vhostsへのシンボリックリンクです。仮想ホストファイルに適切なパス(Dropbox)を指定しても、効果はありません。

他に有効にするものはありますか?

4

1 に答える 1

0

たぶん、フォルダ階層のリンクの前にfollowSymLinkを使用する必要がありますか?

<Directory /home/anjanesh>
    Options +FollowSymLinks
</Directory>
于 2012-10-15T12:33:53.530 に答える