By doing a search on the web I've found on "nukecops" forum the following solution in a post:
PHP Code:
i think i've found a rather simple way to avoid the mod_rewrite ability in order to use SEF urls
1. Enable SEF in mambo configuration
2. do NOT rename the htaccess.txt
3. open /includes/sef.php and change this line: (~ line 217)
return $mosConfig_live_site."/".$string;
to
return $mosConfig_live_site."/index.php/".$string;
this will enable SEF urls to work without mod_rewrite at all..
and create urls like this:
http://www.tim-online.nl/index.php/content/view/9/34/
http://www.tim-online.nl/index.php/content/view/10/35/
http://www.tim-online.nl/index.php/component/option,com_docman/Itemid,78/
By visiting tim-online I found that the url was looking enough search friendly so I've decided to test it on my site. Surprise, it worked!
I've made a search here on mambers to find that someone post something like that and I found nothing.
That's why I decided to post it.
Did it worked on your site?
Feedback please!