hello all
I’ve got this situation:
in config/main.php I’ve got:
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>'false',
and in .htaccess in root dir I’ve got:
Options +FollowSymLinks
IndexIgnore */*
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
as suggested
now all the menu entries have got that damn “index.php” at the beginning! that’s not how’s supposed to be, isn’t it?
Am I wrong???