为什么 改完没有用啊 求解
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "g:/Demo"
<Directory "g:/Demo">
#
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "g:/Demo"
<Directory "g:/Demo">
#
2017-06-02
<VirtualHost *:80>
DocumentRoot "E:/test"
ServerName x.com
<Directory "E:/test">
Options +Indexes +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>
举报