yii2でプリティ URLを使いたい
Web ディレクトリの.htaccessファイル:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
config/web.phpで:
'urlManager' => [
'class' => 'yii\web\UrlManager',
'baseUrl' => '/',
'enablePrettyUrl' => false,
'showScriptName' => false,
'enableStrictParsing' => true,
'rules' => [
'/' => 'view/index',
'about' => 'view/about',
'contact' => 'site/contact',
'login' => 'site/login',
'logout' => 'site/logout',
'captcha' => 'site/captcha',
'signup' => 'site/signup',
],
],
url がurlmanager のようにlocalhost
ページをロードする が、またはロードする他の URL である場合、再度ロードされます。view/index
localhost/about
localhost/about.php
view/about
view/index