473,791 Members | 3,137 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dynamic Page SEO

Because dynamic pages do not get indexed well in search engines, is
there a decent API out there to parse through the site and write pages
as plain html automatically? I noticed some WordPress and Blogger
writers have their posts served up as plain html.

Any ideas?

Thanks.

Apr 20 '06 #1
10 2165
ma*******@gmail .com wrote:
Because dynamic pages do not get indexed well in search engines, is
there a decent API out there to parse through the site and write pages
as plain html automatically? I noticed some WordPress and Blogger
writers have their posts served up as plain html.

Any ideas?

Thanks.


What makes you think dynamic pages aren't indexed well? I have several sites
with dynamic pages which are indexed quite well.

All the search engine sees is the generated HTML anyway. So what would be the
difference between that and static html pages (other than the latter will be out
of date minutes after they are generated). And the static pages will have
different URL's, so the search engines wouldn't point at your dynamic pages
(with the correct into) anyway.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 21 '06 #2
Thanks. Do you think a dynamic one-pager which gives an appearance of
a full site through 'index.php/?id=1' would be indexed better than the
same site with every page written in html? Something is telling me
plain html sites float up faster.

Apr 21 '06 #3
ma*******@gmail .com wrote:
Thanks. Do you think a dynamic one-pager which gives an appearance of
a full site through 'index.php/?id=1' would be indexed better than the
same site with every page written in html? Something is telling me
plain html sites float up faster.


Not necessarily. And even if you do have a "page1.html " for the search engines,
how are you going to link to it? And even if you do link to it. the search
engine will point to it - not to "index.php?id=1 ".

But virtually all of my dynamic pages do have their own URLs. Through Apache's
mod_rewrite, "/page1.php" may well point to index.php?id=1.

However, it's also not how I design my sites overall. I let each page have it's
own url, with html and code as necessary for that page. Common headers and
footers are included.

Even so - most are dynamically generated in PHP, Perl or ASP.

But if you want to know more about search engines and optimizing for them, I
suggest you try a search engine news group. This isn't a PHP question.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 21 '06 #4
Thank you, Jerry.

Apr 21 '06 #5
ma*******@gmail .com:
Do you think a dynamic one-pager which gives an appearance of
a full site through 'index.php/?id=1'
Wow there! If all your pages are indexes, it follows that the
content they index must be either something other than webpages (e.g.,
images) or off-site pages! Unless the indexes index themselves!
Recursive indexing.

Seriously, they're not all indexes, are they?
would be indexed better than the same site with every page
written in html?
Besides XHTML, what other markup notation do you have in mind?

(Seems to me you're confusing *files* with *webpages*, apologies if
I'm wrong.)
Something is telling me plain html sites float up faster.


If a portion of your users are search engines, you presumably have
many more users. Look up maxims of HTTP URL design, you'll find they
take into consideration more than SEO. For example, the human aspect,
since URLs are, whether or not this was originally intended, part of
the user interface.

--
Jock

Apr 21 '06 #6
> Seriously, they're not all indexes, are they?

Because this is an experiment, my entire site is actually one page -
'index.php' with a ton of database-related code and conditional
statements. Inside the database, I got even more code parsed by
eval().

Can a site like that possibly be properly indexed?

Apr 21 '06 #7
ma*******@gmail .com wrote:
Seriously, they're not all indexes, are they?

Because this is an experiment, my entire site is actually one page -
'index.php' with a ton of database-related code and conditional
statements. Inside the database, I got even more code parsed by
eval().

Can a site like that possibly be properly indexed?


That's a completely different question than what you previously asked. I would
never do a site like this.

But as I said before - this has nothing to do with PHP. Check a search engine
group for good information.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 21 '06 #8
Jerry, thanks for the response.

The user I'm building the site for is an absolute beginner when it
comes to computers. He needs to add/remove/modify pages easily. I
cannot see a better way of accomplishing that than using the 'get'
method - this way if a page needs to be added and navigation updated,
it's just another row in the MySQL table. The downside, everyone is
telling me, is poor indexing, which brings me to my original question
of a php interface that would parse through newly
added/modified/dropped pages and crank out plain html.

Basically, I want to accomplish what Blogger does - add pages
interactively, but have a real URL address that ends with *.html.

Apr 21 '06 #9
ma*******@gmail .com wrote:
Jerry, thanks for the response.

The user I'm building the site for is an absolute beginner when it
comes to computers. He needs to add/remove/modify pages easily. I
cannot see a better way of accomplishing that than using the 'get'
method - this way if a page needs to be added and navigation updated,
it's just another row in the MySQL table. The downside, everyone is
telling me, is poor indexing, which brings me to my original question
of a php interface that would parse through newly
added/modified/dropped pages and crank out plain html.

Basically, I want to accomplish what Blogger does - add pages
interactively, but have a real URL address that ends with *.html.


I wouldn't worry about SE rankings then. An absolute beginner won't be able to
get a decent se rating anyway. That takes both knowledge and skill.

If he wants decent ratings, he needs to hire a webmaster to manage his site.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 21 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
4647
by: Daniel Keller | last post by:
Hello! I'm trying to set up a page system using "dynamic" SSI. That means that I normally use the following on my website: <!--#include virtual="file.inc" --> Now I want to make this "dynamic" and I don't have a clue how to do so. I want to link to a file using something like this: <a href="file.shtml?dynamic">Link</a>
1
17675
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to Create a Dynamic Crosstab Report PRODUCT :Microsoft Access PROD/VER:1.00 1.10 OPER/SYS:WINDOWS
3
3986
by: Leo J. Hart IV | last post by:
OK, here's another question for the experts: I am building a multi-step (3 steps actually) form using a panel for each step and hiding/displaying the appropriate panel/panels depending on which step you're on. This all works fine, but I ran into some trouble when I started creating controls dynamically in my code-behind file. Each panel contains a table which is filled with various radio buttons, text fields and the such which are...
3
1864
by: WebBuilder451 | last post by:
I have a series of dynamic link buttons created based upon a datareader. I've added a click event and it calls the sub ok: example: "while loop through the reader" Dim ltrCtrl As New LiteralControl Dim lbtnCtrl As New LinkButton ltrCtrl.Text = "<br>" lbtnCtrl.Text = "WE: " & dtrCal(10).ToString lbtnCtrl.ToolTip = dtrCal(10).ToString & " these events" & dtrCal(1) lbtnCtrl.ID = "wecc" & i.ToString
7
1893
by: Abraham Luna | last post by:
how do i stop the dynamic validators from breaking explorer if i use a dynamic validator and move to a different control it breaks explorer and i can type in the page when i'm not supposed to. thank you.
3
13755
by: NateDawg | last post by:
I'm reposting this. I'm kinda in a bind untill i get this figured out, so if anyone has some input it would sure help me out. Ok, I’ve noticed a few gridview problems floating around the forum. Everyone wants to do a java confirmation box when a user clicks the delete button. Fair enough, basic user design rules state that you should always confirm a delete action. There is also a consensus that the best way to do this is a template...
10
4939
by: jflash | last post by:
Hello all, I feel dumb having to ask this question in the first place, but I just can not figure it out. I am wanting to set my site up using dynamic urls (I'm assuming that's what they're called, an example of what I have in mind is index.php?page=). However, I can not figure out how to do this. I will eventually want to use SEF urls, but for now I'll be content just to have the dynamic urls. If anyone can tell me how to do this, I'd...
5
3177
by: pittendrigh | last post by:
There must be millions of dynamically generated html pages out there now, built by on-the-fly php code (and jsp, perl cgi, asp, etc). Programatic page generation is transparently useful. But querying a database, negotiatinig lots of if-then-else logic and echo'ing html code out on port 80 every time a page is requested has to be a huge waste of resources. Why not use that logic to print static html instead of dynamic?
9
2986
by: pbd22 | last post by:
Hi. This is just a disaster management question. I am using XMLHTTP for the dynamic loading of content in a very crucial area of my web site. Same as an IFrame, but using XMLHTTP and a DIV. I got the core of the javascript from here: http://www.dynamicdrive.com/dynamicindex17/ajaxcontent.htm I noticed in the demo that sometimes the content takes a long
5
2587
by: bearophileHUGS | last post by:
I often use Python to write small programs, in the range of 50-500 lines of code. For example to process some bioinformatics data, perform some data munging, to apply a randomized optimization algorithm to solve a certain messy problem, and many different things. For that I often use several general modules that I have written, like implementation of certain data structures, and small general "utility" functions/classes, plus of course...
0
9669
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9515
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10427
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10207
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10155
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7537
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5431
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5559
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2916
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.