如何刪除 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
            ),
    ),
);
?>