phpapache
直接在浏览器中访问localhost/demo,则会自动显示/htdocs/demo下的index.html页面
下面修改httpd.conf,为该工程配置虚拟路径,如下
<code>LoadModule rewrite_module modules/mod_rewrite.so<ifmodule aliad_module>Alias /test "/usr/local/apache2/htdocs/demo/"</ifmodule><directory>AllowOverride NoneOptions NoneOrder allow,denyAllow from all</directory></code>
最后重启apache,通过localhost/test无法访问该工程,显示为
<code>Not FoundThe requested URL /test was not found on this server.Apache/2.0.65(Unix) DAV/2 Server at localhost Port 80</code>
/apache2/logs/error_log报错如下
<code>[error][client 127.0.0.1]File does not exist:/usr/local/apache2/htdocs/test</code>
请前辈们看一下,我这个虚拟路径为什么配的不正确呢?