SEO Pretty Urls on IIS with ISAPI
Posted: Thu Feb 18, 2010 12:05 pm
I have the following URL Settings from my config file (V 1.6.6)
Which currently gives me something like
I have the following URL Settings from my config file
What I'd really like is to be able to remove index.php/ from the url such that instead it reads as
I've searched the forums and tried some of the solutions, but I suppose I didn't know what I was doing 
Any ideas?
Code: Select all
$config['url_rewriting'] = 'internal';
$config['page_extension'] = '';
$config['use_hierarchy'] = true;
$config['query_var'] = 'page';
I have the following URL Settings from my config file
Code: Select all
http://<url>.com/index.php/news/1/39/News-Module-Installed
Code: Select all
http://<url>.com/news/1/39/News-Module-Installed

Any ideas?