Quote:
i tried it but it doesn't work for my joomla 1.5.
Definitely worked for me with 1.5 while our client didn't have a mod_rewrite clone for windows available.
I am assuming that you have teh SEF options in Joomla's config enabled?
If yes, then it may be that your server isn't populating the same environment variables. I would suggest putting together a simple PHP script that just calls:
phpinfo();
(call it something like info.php).
Then make a request to your server with:
http://domain/info.php/junk/pathOnce the page renders, search for "junk/path" in your environment variables and use that instead of PATH_INFO. (This is effectively what I did to find that PATH_INFO worked for me).
Z