I've read guides on its removal and they tell me to add this to a .htaccess in my htdocs root directory:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
However my websites directory is like so: htdocs\mywebsite\
I've tried adding the htaccess file in both htdocs and mywebsite but without result. I've also tried modifying the last line to look like
RewriteRule ^(.*)$ mywebsite/index.php/$1 [L]
In both htdocs and mywebsite directory. But I have no idea what is correct .htaccess syntax or how it works, so I didn't really expect it to work.
I've also tried modifying the .htaccess file everywhere else in the codeigniter dir tree.