ace_case
Member
- Messages
- 217
- Reaction score
- 11
- Points
- 18
Lets say I have page http://example.com/page.php?contentid=55
Would it be better for SEO to have
or
Would it be better for SEO to have
PHP:
<!doctype html>
<html>
<head><title>Name Of Website</title></head>
<body>
//content
</body>
</html>
PHP:
<!doctype html>
<html>
<head></head>
<body>
//pulls content from database
<title>Title of Page</title>
//content
</body>
</html>