php - how to send data in url in a different way then by using get method -
I want to see my address like this: www.example.com/112112/example
112112
is a data, I want to work in a php script. how to do this? For some reasons, I www.example.com?id=112112
You can use URL rewrite to obtain binding on www.example.com/112112/example at www.example.com?id=112112. For Apache webserver, you will find a guide here:
Comments
Post a Comment