1)在index.php文件修改: 2)params.php里按需更改dbtype 3)创建一个 .htaccess文件放在web目录下,就是index.php同目录下
Options +FollowSymLinks
IndexIgnore /
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
4)在 apache 的 httpd.conf 文件中,DocumentRoot 为你项目所在的目录,如果不是请修改。 把下面这句的注释去掉。
Include conf/extra/httpd-vhosts.conf
5)在 apache 的 httpd-vhosts.conf 文件中,添加以下内容,XXX为你项目名,或者你项目路径
<VirtualHost *:80>
DocumentRoot "E:\XXX\web"
ServerName frontend.com
ServerAlias
<Directory "E:\XXX\web">
Options FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
</Directory>
</VirtualHost>
6)重启 apache , 此时应该已经可以访问了,但数据库还没连上 7)根据数据库配置信息连接数据库
|