0

我想让

http://localhost/demo/index.php?r=greeting

通过访问

http://localhost/demo/greeting

在 config/main.php 中,我设置为

'urlManager'=>array(
            'urlFormat'=>'path',
            'showScriptName' => false,      
            'rules'=>array(
                '<controller:\w+>/<id:\d+>'=>'<controller>/view',
                '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
                '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
            ),
        ),

我将以下内容放入 .htaccess

Options +FollowSymLinks
IndexIgnore */*
<IfModule mod_rewrite.c>
RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php
</IfModule>

我可以得到

http://localhost/demo/index.php/greeting

工作但不工作

http://localhost/demo/greeting

作品是什么原因?

4

2 回答 2

0

这对我有用...

    'urlManager'=>array(
        'urlFormat'=>'path',
        'rules'=>array(
            '<controller:\w+>/<id:\d+>'=>'<controller>/view',
            '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
            '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
        'showScriptName'=>false,
    ),

对于 htaccess 部分

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#otherwise forward to index.php
RewriteRule . index.php

看起来像你的,但你必须确保 .htaccess 文件在受保护的文件夹之外,因此在你的 web 目录的根文件夹中。

于 2013-03-21T20:14:40.570 回答
-1
'urlManager'=>array(
        'urlFormat'=>'path',
                    'showScriptName'=>false,
        'rules'=>array(
                            'gii'=>'gii',
                            'gii/<controller:\w+>'=>'gii/<controller>',
                            'gii/<controller:\w+>/<action:\w+>'=>'gii/<controller>/<action>',

            '<controller:\w+>/<id:\d+>'=>'<controller>/view',
            '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
            '<controller:\w+>/<action:\w+>/<key:\w+>'=>'<controller>/<action>',
            '<controller:\w+>/<action:\w+>/<id:\w+>/<param:\w+>'=>'<controller>/<action>',
            '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
        ),
    ),

试试这个。它为我工作。这也包括 gii url 的一部分。使用它,您还可以使用以下网址打开您的 gii 面板http://localhost/demo/gii

您还在什么 .htaccess 中进行了此更改?

于 2013-03-21T13:02:55.090 回答