Question 1
http://www.example.com/?do=blah
How do you get it to work without index.php? Any examples?
Question 2
http://www.example.com/news.php?blah
This link doesn’t show the same result as news.php, but shouldn’t we be using news.php&blah=value for example? What does the string after ? stand for? Shortened version of GET variables or an entirely different thing?
Question 1
As long as
index.phpis your default and you have it present in your root folder then you only need to havewww.domain.com/?querystring=valueQuestion 2
?is the beginning of a querystring parameter. It should be used for the first one.&is for every querystring parameter after that.index.php?querystring1=value&querystring2=value&querystring3=valueand so on.