|
Note that depending on how you code your php etc, you can avoid the querystring problem.
If you use HTTP POST instead of HTTP GET, all that is hidden away and not present in the URL.
From my experience, its best to sort out your site using modrewrite so that instead of having "http://mysite.co.uk/page.php?id=45367" you have something like "http://mysite.co.uk/catagory/pagename". Not only is better for users wanting to share the URL, but you can put a load of keywords in the URL too, which always helps.
|