Forum Moderators: coopster
I'm interested in using PHP to do a simple mod_rewrite function on IIS, my site is on a shared server, so I don't have access to the administrator side of things, so I was wondering if I could use a php script as an intermediary, instead of using '?' as the delimiter for a query string, you pass a string like:
www.sitename.com/obj.php/section/id/10/
obj.php would work out what exactly you're trying to do, and to a search engine I'm assuming that it'll look like a directory as opposed to a script?
I'm sure it's easy to do, it's just the search engine implications of doing it I'm interested in.
Any thoughts?
www.example.com/script.php/var1/apple/var2/banana
then you need either mod_rewrite or ISAPI_rewrite to get script.php to receive the request.
PHP on its own isn't enough - the webserver will interpret the URL as a request for the file 'banana' in the folder '/script.php/var1/apple/var2/'