Archive for July, 2007

How to Remove PHPSESSID

Thursday, July 12th, 2007

Insert the following code into .htaccess to remove session IDs from your website URLS
php_value session.use_only_cookies 1
php_value session.use_trans_sid 0

This code tells the server to store the PHPSESSID in a cookie or not to bother. If the browser does not have cookies enabled, then the session id won’t move to the URL. This does mean that all functionality […]

What is PHPSESSID?

Thursday, July 12th, 2007

PHPSESSID is the Session ID in PHP which can cause some real problems when search engines index your pages.
You should disable PHPSESSID on your sites and keep session IDs in cookies instead.
It will be more helpful, if you disable PHPSESSID in the URL because visitors must have cookies enabled to make use of any code which requires […]

iFrame vs Great Search Engines

Thursday, July 12th, 2007

An IFRAME is an HTML tag used in web design that allows a webpage to be displayed in a frame within another webpage. Inline Frame (iFrame) is the content cut into web page which allows visitors to view another pages on your website or off your site without reloading the entire page.
Someone told me that iframe link will be […]