So I am trying to remove index.php from address using this manual: http://dev.lohv.eu/1/user_guide/general/urls.html
Atm I have address http://dev.lohv.eu/1/index.php but I want to use it in future without index.php, like so: http://dev.lohv.eu/1/
I created .htaccess file according to manual:
RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L] But unfortunaly it fails, I get 404 error. I guess the problem is, I am trying to configure .htaccess in subdomain folder so it wont fit as in manual and needs some extra, but I don't know what extras it needs.