Redirect problem on Clean URL

Hai All,

Anybody can help me, i have a problem when using clean url on my Yii1 when upload to hosting, all of my redirect page cannot working, only blank page after submit no error messagw show even debug error true

my configuration :

main.php

'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>',


                   ),


            ),

and .htaccess

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

</IfModule>

thank you

there must be htaccess missing or check php version of your server.

Check your server log.

Thanks for the reply, finally i migrate to another hosting because my existing share hosting still using php 5.3,

and when i migrate to another hosting all of my code working fine