VB Only Feature

prasad

New Member
Messages
43
Reaction score
0
Points
0
SMF has it that way by default... correct me if I'm wrong. You can also enable Search-engine friendly URL's (only for Apache) using the control panel.
 

Werewolf

New Member
Messages
24
Reaction score
0
Points
1
SMF has it that way by default... correct me if I'm wrong. You can also enable Search-engine friendly URL's (only for Apache) using the control panel.

Yeah i know about that but in VB u can virtually split each subforum into its own directories, so is that a vb only thing?
 

prasad

New Member
Messages
43
Reaction score
0
Points
0
Yeah i know about that but in VB u can virtually split each subforum into its own directories, so is that a vb only thing?
Well I havent seen it in any other forum software... So no.. not to my knowledge.
 

CascadesAdmin

New Member
Messages
87
Reaction score
0
Points
0
yeah they are called search engine friendly URLs or Static URLs, I dont know if it is a vb only feature.
 

cashguy

New Member
Messages
40
Reaction score
0
Points
0
No, all major CMS's and bulleting boards worth their name support static url's. It is just that different applications have different names for that feature.

You must make sure, though, that your web host supports the apache feature
"mod_rewrite". Just so you know, x10hosting supports that feature! ;)
 

mr kennedy

Member
Messages
524
Reaction score
1
Points
18
Well only vBSEO does that and x10 has that, vBSEO is paid guys but people at vBulletin team are now working on version 3.7 and i hope they'll include that feature because I do use vB myself too ;)
 

Slothie

New Member
Messages
1,429
Reaction score
0
Points
0
No, friendly URL's are available as a vBulletin mod for free. vBSEO just has extras.
 

Thewinator

New Member
Messages
256
Reaction score
0
Points
0
These features can, like the magistrate pointed out, be used with any web aplications that use apache.
The thing is, some cms/boards support it themselves with the other's your just going to have to make the modifications to the .htaccess file yourself.
But im sure it can be found for any common cms using a thing called a search engine.
 

InsanityOnline

New Member
Messages
30
Reaction score
0
Points
0
Many forums have features like that, as far as I am aware. MyBB might, or maybe I am just having a memory lapse.
 

Slothie

New Member
Messages
1,429
Reaction score
0
Points
0
the name of what? I've got my phpBB with friendly URLs, trying to make a clone of the vB one.
 

mr kennedy

Member
Messages
524
Reaction score
1
Points
18
the name of what? I've got my phpBB with friendly URLs, trying to make a clone of the vB one.

ok... I tried to have an .htaccess (with mod_rewite) on the server's side but in needs to have code modifications on the vB's side
 

Penguin129

New Member
Messages
68
Reaction score
0
Points
0
Here's one way to do it, I use it on one of my websites:
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteRule ^(.+)$ index.php?page=$1 [L,QSA]
Basically, if the file the browser is requesting is not a directory or a file, then take the whole requested location and give it to index.php in a GET variable. Of course to fit this into a forum you'll need a bit more work to achieve it. Hope this helps. :D
 
Last edited:

Slothie

New Member
Messages
1,429
Reaction score
0
Points
0
Sure it does, mod_rewrite just gives you the ability to have friendly URLs. It doesn't automagically convert your existing links to friendly format.
 

mr kennedy

Member
Messages
524
Reaction score
1
Points
18
Sure it does, mod_rewrite just gives you the ability to have friendly URLs. It doesn't automagically convert your existing links to friendly format.


lol ok... but i'm not an expert on .htaccess :(
 
Last edited:
Top