Yii2配置httpd.conf后,仍然在网址

时间:2015-04-27 17:46:00

标签: apache mod-rewrite yii2 httpd.conf

这是我的httpd.conf设置到我的yii应用程序

Alias /attendance "C:/wamp/www/myproject/web"
<Directory "C:\wamp\www\myproject\web">
    # use mod_rewrite for pretty URL support
    RewriteEngine on
    # If a directory or a file exists, use the request directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    # Otherwise forward the request to index.php
    RewriteRule . index.php

    # ...other settings...
</Directory>

如果我在浏览器中打开

,这样可以正常工作

http://localhost/attendance/

但是当我导航到这样的页面时,请联系,登录

它会像这样使用网址中的myproject

http://localhost/myproject /web/site/about

同样可以看到网页文件夹附加在网址

如何使用别名并删除网址中附加的网页

1 个答案:

答案 0 :(得分:0)

DocumentRoot设置为项目路径"C:/wamp/www/myproject/web"