标签:php
1. 在项目跟目录创建.htaceess
文件, 内容如下:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
/etc/apache2/site-avalible
文件夹中复制 000-dedault.conf
文件, 重命名为你的项目.conf, 如下:cp 000-default.conf mysite.conf
并增加以下内容:
<VirtualHost *:80>
ServerName www.mysite.com
ServerAdmin webmaster@localhost
DocumentRoot /home/www/mysite
<Directory /home/www/mysite>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
Order allow,deny
allow from all
</Directory>
</VirtualHost>
sudo a2ensite mysite.conf
sudo a2enmod rewrite
[重要]
systemctl restart apache2.service
Ubuntu 16.04 本地 php 项目 访问地址去掉 index.php
标签:php
原文地址:http://blog.51cto.com/13523022/2094391