ฉันได้รับข้อผิดพลาดนี้หลังจากวางไฟล์ของฉันในไดเร็กทอรี html และฉันสับสนเกี่ยวกับการตั้งค่านี้ ฉันคิดว่าฉันต้องเปิด index.php
ไฟล์ แต่ฉันได้รับข้อผิดพลาด 500 โปรดแจ้งให้เราทราบเกี่ยวกับข้อผิดพลาดใดๆ ที่คุณสังเกตเห็น
เป็นข้อมูลจาก /etc/apache2/sites-available/fullstack1.conf
:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName www.fullstack1.xyz
ServerAlias fullstack1.xyz
DocumentRoot /var/www/html/fullstack1
<Directory /var/www/html/fullstack1/public/>
DirectoryIndex index.php
AllowOverride All
Require all granted
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
LogLevel warn
</VirtualHost>
เป็นข้อมูลจาก /etc/apache2/apache2.conf
:
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>