的 在。DocumentRoot
_example.com
/var/www/html
Laravel 已安装,/var/www/example/public
我可以使用它来访问它,http://example.com/dashboard
但是当我尝试访问其他路由时出现问题,比如 ashttp://example.com/dashboard/login
并且抛出404 Not Found
错误。并说The requested URL /var/www/example/public/index.php was not found on this server.
有人可以指导我吗?
公共目录中的.htaccess文件保持不变。
这是000-default.conf
:
ServerName example.com
UseCanonicalName Off
<Directory /var/www/html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /dashboard /var/www/example/public
<Directory /var/www/example/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
#dynamic subdomain provisioning
<VirtualHost *:80>
DocumentRoot /var/www/example/public
ServerName user.example.com
ServerAlias *.example.com
<Directory /var/www/example/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>