Tuesday, October 29, 2013

urlSuffix [.html,.php] yii


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

'urlManager'=>array(
    'urlFormat'=>'path',
    'rules'=>array(
        '/'=>'/view',
        '//'=>'/',
        '/'=>'/',
       ),
     'showScriptName'=>false,
     'urlSuffix'=>'.html',
  ),

No comments:

Post a Comment