仮想ホスト用にこの構成があり、実際のドメインで実行されます。テスト目的で、実際のドメインではない同じ仮想ホスト (つまり、domain10) を作成する必要があります。ブラウザが仮想ホストのドメイン名をチェックすることを考慮して、127.0.0.1のようなものを使用していると思います。しかし、私はこれを実現する考えはありません。
<VirtualHost *:80>
ServerAdmin info@domain10.org
ServerName domain10.org
ServerAlias domain10.org
DirectoryIndex index.html index.htm index.php
DocumentRoot /home/domain10.org/
<Directory /home/domain10.org/>
Options -Includes -Indexes -FollowSymLinks -ExecCGI +MultiViews
AllowOverride none
Order allow,deny
Allow from all
</Directory>
</VirtualHost>