Forum Moderators: phranque
PHP is Server Side! HTML is Client Side! I am not redirecting any HTML to PHP. The websites internal pages are coded in PHP, but the webpages are served up as HTML. No person, nor search engine, knows that we are even using PHP.
It is completely hidden due to the URLs being rewritten using modrewrites in the .htaccess file.. It allows the pages to be created dynamically using databases.
Is search engine don't know the differnce?
Is this SEO Friendly Technique?
Is this effect the website for indexing and traffic?
Any one please help me to knbow above queries!
It is SEO friendly only in that it avoids having to change all of your URLs from .html to .php. Otherwise, search engines don't really care, because either way, they're going to get an HTML page -- either because the URL resolves to a 'real' static .html file, or because your PHP script(s) produce HTML pages as their output.
This should have no effect on indexing and traffic, because no-one except you cares how HTML pages are produced on your server. In fact, the current trend is to move to 'extensionless URLs' -- for example, to use "example.com/page" instead of "example.com/page.html" or "example.com/page.php". Again, no-one but you really cares how the content for that URL was generated - whether by an HTML editor or by a server-side script.
Jim