如何删除 url 中的 index.php

在 httpd.conf 文件中删除了用于重写的注释行。

LoadModule rewrite_module modules/mod_rewrite.so

你可以修改 .htaccess 文件你的应用程序文件夹。

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

在你可以更改 main.php 文件代码之后。

<?php
return array(
    // application components
    'components'=>array(
            // uncomment the following to enable URLs in path-format
            '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>',
                ),
                'urlSuffix'=>'.html',
                'caseSensitive'=>false
            ),
    ),
);
?>