我正在尝试在家里的本地服务器上设置 laravel,但我似乎无法让控制器路由正常工作,例如:
Route::controller('home','home');
此代码适用于我工作的服务器,并且我已经阅读了一些有关该问题的论坛,这些论坛声称该问题是因为 apache2 未配置为查看 .htaccess 文件。
我已经搞砸了一段时间,但我似乎仍然无法得到任何工作。我进入 /etc/apache2/sites-available 并创建了自己的名为 site1 的配置文件,如下所示:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/laravel/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/laravel/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
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
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
然后我运行 a2dissite default && a2ensite site1 和 /etc/init.d/apache2 restart 但什么也没发生。
感谢您的帮助,如果我需要澄清任何事情,请告诉我。
原来 apache 甚至没有读取 .htaccess 文件。我故意在里面写了一些本应导致错误的废话,但事实并非如此。