Hi,
I’m unable to get rid of the file name in the url. When I do and go to my website, there is a redirection loop - where it redirects to the file /user/auth [which is the default controller] (I installed the usermanagement extension).
here’s my .htaccess
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
here’s my url manager settings
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'fbfriends' => 'friendship/friendship/fbfriends',
'profile/profile/view/id/<id:\d+>' => 'profile',
'<action:(profile)>' => 'profile/<action>/view',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
)),