ubuntu 13.04 を使い始めたばかりで、Web サイトのファイルでローカルに作業しようとしています。
プロジェクトのURLを使用して仮想ホストを作成し、RewriteBaseをhtaccessのこのパスに変更しましたが。
私の問題は$_SERVER['DOCUMENT_ROOT']
(それはとどまるの/var/www
ではなく/var/www/mysite
)相対パスです..
ご協力ありがとうございました。
仮想ホスト: ServerAdmin webmaster@localhost ServerName mysite.com
DocumentRoot /var/www/mysite.com/public_html
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www>
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined