Link to home
Start Free TrialLog in
Avatar of rares_dumitrescu
rares_dumitrescu

asked on

URL with out ?bla.php...

If I have a url like:
www.something.com/?text_text_text
actualy the file accesed is index.php with that parametter.

How can I get the same efect whitout "?" ? just www.something.php/text_text_text
Avatar of bpmurray
bpmurray
Flag of Ireland image

You need to add a filter to your server that translates the url into what you want.
Just another comment, I presume you mean generically to map a URL with the following  format:
     http://www.something.ext/foobar

to the real address:
    http://www.something.ext/index.html?foobar

I've actually only done this using Java, but it should also be possible using PHP or any other mechanism.
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial