Symfony 不加载页面
Symfony doesn't load a page
我刚刚在我的 Ubuntu Server
中配置了 Symfony
3.4.15,欢迎页面可以使用,但是当我想创建一个新页面时,例如 /home,它没有控制器不工作:
Not Found
The requested URL /home was not found on this server.
Apache/2.4.18 (Ubuntu) Server at 167.99.90.60 Port 80
我按照 Symfony 文档中的所有步骤操作,但它不起作用...
我了解到问题是由我的Apache2 配置引起的,但我不知道如何解决。
我的 Ubuntu 服务器上安装了 LAMP。
apache2 配置是这样的:
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/my-project/public>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
#<Directory /srv/>
# Options Indexes FollowSymLinks
# AllowOverride None
# Require all granted
#</Directory>
这是我的虚拟主机文件配置:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname $
# the server uses to identify itself. This is used when creat$
# redirection URLs. In the context of virtual hosts, the Serv$
# specifies what hostname must appear in the request's Host: $
# match this virtual host. For the default virtual host (this$
# value is not decisive as it is used as a last resort host r$
# However, you must set it for any further virtual host expli$
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/my-project/public
# Available loglevels: trace8, ..., trace1, debug, info, noti$
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For ex$
# following line enables the CGI configuration for this host $
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
有什么想法吗?
我最好的猜测是你没有启用 url 覆盖。
您尝试过使用 Symfony 开发服务器吗?
确保你的 apache 配置文件中有类似 hthis 的东西(通常在 /etc/apache2/apache2.conf 中):
<Directory /var/www/>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
问题是我忘记在 de /public 文件夹中创建 .htaccess
文件。
我刚刚在我的 Ubuntu Server
中配置了 Symfony
3.4.15,欢迎页面可以使用,但是当我想创建一个新页面时,例如 /home,它没有控制器不工作:
Not Found
The requested URL /home was not found on this server. Apache/2.4.18 (Ubuntu) Server at 167.99.90.60 Port 80
我按照 Symfony 文档中的所有步骤操作,但它不起作用...
我了解到问题是由我的Apache2 配置引起的,但我不知道如何解决。
我的 Ubuntu 服务器上安装了 LAMP。
apache2 配置是这样的:
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/my-project/public>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
#<Directory /srv/>
# Options Indexes FollowSymLinks
# AllowOverride None
# Require all granted
#</Directory>
这是我的虚拟主机文件配置:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname $
# the server uses to identify itself. This is used when creat$
# redirection URLs. In the context of virtual hosts, the Serv$
# specifies what hostname must appear in the request's Host: $
# match this virtual host. For the default virtual host (this$
# value is not decisive as it is used as a last resort host r$
# However, you must set it for any further virtual host expli$
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/my-project/public
# Available loglevels: trace8, ..., trace1, debug, info, noti$
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For ex$
# following line enables the CGI configuration for this host $
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
有什么想法吗?
我最好的猜测是你没有启用 url 覆盖。
您尝试过使用 Symfony 开发服务器吗?
确保你的 apache 配置文件中有类似 hthis 的东西(通常在 /etc/apache2/apache2.conf 中):
<Directory /var/www/>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
问题是我忘记在 de /public 文件夹中创建 .htaccess
文件。