Posted By: valmont ()
Posted On: 12/06/2007 01:48 am
|
Hello all master coders,
I have been doing my site exclusivley in html. What is the big differences bewteen php and html? What are the advantages/disadvantages? What, if any would be the penalty from going from an html site to a php site? Would this hurt the PR I have already gotten as well as the search results? Woud it appear to be a whole new site?
Please discuss.
Thanks in advance.
[ Message was edited by: JimBot 12/06/2007 02:37 pm ... Reason: Link Drop Removed. ]
|
|
Posted By: Curt ()
Posted On: 12/06/2007 12:39 pm
|
PR values would tank to zero if the existing pages currently have some PR values already. There are ways to get the server to process pages with .html extensions as PHP pages. PHP is helpful if you want to generate dynamic content on the fly from the server side. Someone with more server end configs experience can help you here--not my strength.
BTW, there's no link dropping with sigs allowed. Mods will remove self-promo links for commercial sites.
|
|
Posted By: g1smd (Moderator)
Posted On: 12/06/2007 02:38 pm
|
The browser will always see a page of HTML code.
What a PHP site does is use a script to dynamically build the page (of HTML code and content) on the server before sending it out.
|
|
Posted By: Prowler (Moderator)
Posted On: 12/06/2007 09:24 pm
|
Like the above Apache directive in a .htaccess file will force the Apache server to parse all htm/html files as if they had the extension of .php files.
So you don't start from the scratch as pointed out by Curt above.
Again as mentioned by g1smd, the browsers (including the Search Engine Robots) will see only the HTML code no matter what server side language the pages were coded with.
|
|
|