在这之前我将laravel目录下的server.php重命名为index.php
链接变成了http://localhost/blog/index.php/xxx/xxx
之前我根据网上的方法操作过,很多都不能用,然后看到一篇搭建laravel环境的文章,有了思路
1、sudo vim /etc/hosts
添加: 127.0.0.1 xuan.blog(后面我发现这里其实可以随便填。。。)
2、启用mod_rewrite
sudo a2enmod rewrite
然后重启apache服务器
sudo service apache2 restart
3、修改apache2.conf
sudo vim /etc/apache2/apache2.conf
在最后添加:
ServerName localhost DirectoryIndex index.html index.htm index.php
并且修改:
<Directory /var/www/> Options Indexes FollowSymLinks AllowOverride all(这里改为all) Require all granted </Directory>
4、添加blog.conf (配置虚拟站点,这里哪个名字也是可以改的)
sudo vim /etc/apache2/sites-available/blog.conf
添加:
<VirtualHost *:80> ServerName xuan.blog DocumentRoot /var/www/html/blog/public ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </virtualHost>
5、启用虚拟站点
sudo a2ensite blog.conf sudo service apache2 reload
6、最后再设置下权限
sudo chmod -R 0777 /var/www/html/blog
以上这篇laravel5环境隐藏index.php后缀(apache)的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持黑区网络。