Macで初めてXAMPPを使用しています。ルート フォルダー (htdocs) 以外へのアクセスで問題が発生しました。デフォルトの httpd.conf ファイルを使用して htdocs 内に Web アプリケーションを配置すると、Web アプリケーションの URL を httpd.conf で指定しようとするとYou don't have permission to access / on this server.
エラーがスローされます。
ルートフォルダーを変更するには、XAMPP/etc/httpd.conf ファイルを変更する必要があることを認識しています
デフォルトの XAMPP MAC 設定で、XAMPP/etc/httpd.conf ファイルのサーバー ルート、ドキュメント ルート、およびディレクトリを次のように変更しようとしています。
ServerRoot "/Applications/XAMPP/xamppfiles"
DocumentRoot "/Users/ravi/Documents/Development/Backbone/backboneboilerplate"
<Directory />
#Options FollowSymLinks
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
<Directory "/Users/ravi/Documents/Development/Backbone/backboneboilerplate">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>