修改config/main.php
‘urlManager‘=>array( ‘showScriptName‘=>false, ‘urlSuffix‘=>‘.html‘, ‘urlFormat‘=>‘path‘, ‘rules‘=>array( ‘<controller:\w+>/<action:\w+>/<sId:\d+>‘=>‘<controller>/<action>‘, ), ),
在index.php目录建立.htaccess文件
<IfModule rewrite_module> Options +FollowSymLinks IndexIgnore */* RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php </IfModule>
时间: 2024-11-06 14:02:20