我正在完成我在 Yii 应用程序上的工作,我想要更漂亮的 URL。我通过谷歌搜索网站和 Yii wiki 并按照手册进行操作。但是,我被困在无法从我的 URL 中隐藏 index.php 的地步。在我的 url 中使用 index.php 它可以工作,该网站打开,没有它,它让我服务器 404。
这是我的 main.config:
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,
'rules'=>array(
'<action>'=>'site/<action>',
'<controller:\w+>/<id:\d+>' => '<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
'<controller:\w+>/<action:\w+>' => '<controller>/<action>',
),
),
将“showScriptName”设置为 false 我得到 404。
这是我的 .htaccess
RewriteEngine on
RewriteBase /
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php)
# otherwise forward it to index.php
RewriteRule ^(.+)$ index.php?$1 [PT,L,QSA]
我目前正在使用 WAMP 在 localhost 上测试该站点。Apache 上的 Mod_rewrite 正在运行。将 http.conf 更改为 Options Indexes FollowSymLinks Allow Override All。
我还缺少什么?