Hi,

I am looking for a Bulleting Board / Forums which is :-

1) SEO Friendly .
2) Make the threads in html extension as is done in this forum .No php / aps / aspx extension are preferred
3) Either free or availble at a nominal fees
4) Should work on Linux Server and Windows Server
5) Support should available

I was wondering that what are the options available .I have seen that this Dani Forum itself is using " vBulletin" with html thread.

Please let me know the good optionsavailable as per your expereince .I need to use over my different websites

Dani AI

Generated

A quick, practical summary that complements the replies from , and :

For SEO you’re aiming for stable, human-readable permalinks, unique page titles/meta descriptions, and crawlable content. The literal file extension (.html vs .php) is mostly cosmetic — search engines care far more that the URL is stable, contains useful words (a slug) and that duplicate URLs are handled correctly. Build your URL strategy around an ID+slug pattern (so each thread has a single canonical address), then enforce that pattern with either the forum’s permalink options or with server rewrites and 301s.

Essential checklist (prioritize these over the “.html” look):

  • Stable permalink that includes an identifier and a readable slug.
  • Unique <title> and meta description for each thread.
  • rel=canonical or 301 redirects to avoid duplicate-content from querystrings/pagination.
  • An XML sitemap for threads and regular lastmod updates.
  • Good robots rules and no JS-only navigation for thread discovery.

Practical example (Apache .htaccess) — maps friendly URL to the thread script:

RewriteEngine On
RewriteBase /forums/
# friendly: /forums/topic-title_t123.html  -> showthread.php?t=123
RewriteRule ^(.+)_t([0-9]+)\.html$ showthread.php?t=$2 [L,QSA]

Also canonicalize: when someone hits showthread.php?t=123 have your script generate (or 301-redirect to) the preferred slugged URL so search engines index only that form. A small PHP redirect inside your thread loader will do that safely.

Pick software based on support and extensibility: open-source boards usually have plugins for permalinks; commercial packages give official support and paid SEO plugins. Whatever you choose, test crawlability (use a crawler or Google Search Console), add sitemaps, and implement caching — these steps will have a bigger impact than chasing a specific file extension.

Recommended Answers

All 3 Replies

Any comments friends ?

Dani can you throw some light on your own use of vBulletin bulleting board implementation where every thread has got html extension.

There are some forum systems which are SEO'd by default ... I used to know of at least one of them but I can't remember right now.

Your best bet is to go with something such as vBulletin and then to apply my SEO hack at http://www.daniweb.com/techtalkforums/thread35147.html

It's ultra simple to apply and it's what I use here at DaniWeb.

Most of the Popular forums/BB's have the above said feature's . vBulletin, IPB, phpBB, SMF ..

there is a hack on vBulletin that makes the url's more SE friendly i.e instead of forums/thread1922.html it'll be like forums/complete_topic_name_t1922.html

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.