我通过 yiic 创建了一个应用程序。然后我尝试制作一个 SEO 网址。我在 [app root]/protected/config/main.php 取消注释 urlManager。我将以下内容添加到 [app root]/.htaccess 中。
重写引擎开启
如果目录或文件存在,直接使用
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
否则转发到 index.php
重写规则。索引.php
当我浏览 [app]/site/index 时,我收到错误 404 - 找不到对象。但是如果我通过 [app]/index.php?r=site/index 浏览,它会显示我的应用页面。我通过谷歌搜索跟踪了许多网站。但我得到了同样的错误。
请帮我解决这个问题。