Idea for Forum
Moderator: General Moderators
Idea for Forum
Hello Mods,
I have an idea for this forum. I think this forum contains some huge solutions of PHP and other. Why not make all of them SEO friendly URLS, with title seperated with hiphens in .htaccess. Would that be tough?
Thank You
dude81
I have an idea for this forum. I think this forum contains some huge solutions of PHP and other. Why not make all of them SEO friendly URLS, with title seperated with hiphens in .htaccess. Would that be tough?
Thank You
dude81
- volomike
- Forum Regular
- Posts: 633
- Joined: Wed Jan 16, 2008 9:04 am
- Location: Myrtle Beach, South Carolina, USA
Re: Idea for Forum
And something else I noticed too -- the URLs here go bad eventually. I had a bookmarked URL from like 2 years ago, I clicked it, and the page came up dead.
Re: Idea for Forum
We could write an .htaccess to change viewtopic.php?f=6&t=113979 into viewtopic/6/113979/, but that wouldn't really help with SEO. The inner workings of phpBB would still use viewtopic.php?f=6&t=113979, so any bots parsing the page wouldn't see the pretty URLs.
I have no comment on threads expiring. To the best of my knowledge they don't get pruned automatically.
I have no comment on threads expiring. To the best of my knowledge they don't get pruned automatically.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Idea for Forum
A little work around with database won't help in getting the urls pretty?
Re: Idea for Forum
The database doesn't need to be changed - the code that points to it would need to be. We tend not to mess around with phpBB code.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Idea for Forum
Yeah, PHPbb has a good hacking history
, But if this is done by PHPBB people, I think most forums would get popular with search engines. Atleast first 100 results would be useful
Re: Idea for Forum
I don't think changing the URLs from viewtopic.php?f=6&t=113979 to viewtopic/6/113979/ would have any effect really. The URL still wouldn't contain any keywords and wouldn't be related to the content of the page at all, so there wouldn't be any real SEO advantages.
If it was hacked to be viewtopic/6/113979/idea-for-forum, then there might be some advantages. I cringe at the thought of what we'd have to do to phpBB to get all the internal links to work that way though.
If it was hacked to be viewtopic/6/113979/idea-for-forum, then there might be some advantages. I cringe at the thought of what we'd have to do to phpBB to get all the internal links to work that way though.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Idea for Forum
I've never thought that devnetwork needs SEO, it's the best forum anyway. And as far as I remember, I found it in Google 
Re: Idea for Forum
Yep, I did too. I found devnetwork on Google. But my question was more intended to make each and every topic of devnetwork SEO friendly. Like this, The title "Idea for forum" could be made to "idea-for-forum", rather than /?t=113979.
Hope I'm clear.
Hope I'm clear.
Re: Idea for Forum
I don't think it would be that hard, really.
Just rewrite viewtopic.php?f=6&t=113979 to topic/6_forum-name/113979_topic-name (instead of viewtopic/6/113979/idea-for-forum)
This could be done with:
Editing the templates to use the new links would be a bit more of a hassle, but not undoable. Just make the forum and topic name a "url safe string" (eg "please-help" instead of "!!!!PLEASEHELP@##$")
But I don't know if I'm for or against the idea. Devnet doesn't hurt in terms of search engine positioning and I'm not sure the current setup and server could handle more traffic (if it would even help SEO - I'm no SEO expert)
Just rewrite viewtopic.php?f=6&t=113979 to topic/6_forum-name/113979_topic-name (instead of viewtopic/6/113979/idea-for-forum)
This could be done with:
Code: Select all
RewriteRule ^topic/([\d]+).+/([\d]+).+$ /viewtopic.php?f=$1&t=$2But I don't know if I'm for or against the idea. Devnet doesn't hurt in terms of search engine positioning and I'm not sure the current setup and server could handle more traffic (if it would even help SEO - I'm no SEO expert)
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
Re: Idea for Forum
Yes a little effort can help devnet little more. Current setup you need not worry. Once traffic comes, investors would be interested. Advertising can always for earn revenues for the forum. And Dev net has more than 30k solutions of PHP. I'm sure they will help little more easily those who are searching for solutions to the problem. This can definitely be a hub for PHP employers as well.
I'm sure this will be the start of a good change. Just imagine, Once this really proves well, many of the BB forums may opt for this solution. Search engines will be flooded with solutions, if we just start on this.
I know there are some really best PHP guys (mods (no doubt on them) and many others) in this forum, who can make this happen.
thank you
dude81
I'm sure this will be the start of a good change. Just imagine, Once this really proves well, many of the BB forums may opt for this solution. Search engines will be flooded with solutions, if we just start on this.
I know there are some really best PHP guys (mods (no doubt on them) and many others) in this forum, who can make this happen.
thank you
dude81
Re: Idea for Forum
As far as I know, Devnet is not interested in investors (though perhaps, a dedicated server provider
), and definitely not interested in earning revenue and absolutely not earning revenue from third party ads.
Once again I would like to state I am not for or against the idea, just adding my two cents.
Once again I would like to state I am not for or against the idea, just adding my two cents.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.