vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   The ol' rewrite (https://vborg.vbsupport.ru/showthread.php?t=62467)

gmarik 03-13-2004 08:44 PM

The ol' rewrite
 
1 Attachment(s)
I would want to have in the place of
http://www.vbulletin.com/forum/forumdisplay.php?f=56
something like:
http://www.vbulletin.com/forum/medicine

In the forum info DB a new field would be added "searchenginefriend" where the board 56 would have medicine written and my Apache would do the rest with mod_rewrite or something of that kind. Is it possible with vB3?

filburt1 03-13-2004 09:00 PM

Quote:

Originally Posted by gmarik
I would want to have in the place of
http://www.vbulletin.com/forum/forumdisplay.php?f=56
something like:
http://www.vbulletin.com/forum/medicine

In the forum info DB a new field would be added "searchenginefriend" where the board 56 would have medicine written and my Apache would do the rest with mod_rewrite or something of that kind. Is it possible with vB3?

Inefficient to query, but also tedious to rewrite. The queryless route:
Code:

RewriteRule /forum/medicine /forum/forumdisplay.php?f=56

gmarik 03-13-2004 09:20 PM

Something more automatic? Any idea?

gmarik 03-13-2004 10:24 PM

Quote:

Originally Posted by filburt1
Inefficient to query, but also tedious to rewrite. The queryless route:
Code:

RewriteRule /forum/medicine /forum/forumdisplay.php?f=56

PHP Code:

RewriteEngine on
Options 
+FollowSymlinks
RewriteBase 
/
RewriteRule ^(.*)fid/(.*)$ $forumdisplay.php?f=$2
RewriteRule 
^/f([0-9]+)/s([^/]+?)$ /forumdisplay.php?f=$1&s=$[L]
RewriteRule ^/t([0-9]+)/s([^/]+?)\.html$ /showthread.php?t=$1&s=$[L]
RewriteRule ^/s([^/])+?/$ /index.php?s=$[L]
RewriteRule ^chat forumdisplay.php?f=10 

does not work for "chat" ... any ideas what is wrong with the above examples

filburt1 03-13-2004 10:32 PM

Quote:

Originally Posted by gmarik
PHP Code:

RewriteEngine on
Options 
+FollowSymlinks
RewriteBase 
/
RewriteRule ^(.*)fid/(.*)$ $forumdisplay.php?f=$2
RewriteRule 
^/f([0-9]+)/s([^/]+?)$ /forumdisplay.php?f=$1&s=$[L]
RewriteRule ^/t([0-9]+)/s([^/]+?)\.html$ /showthread.php?t=$1&s=$[L]
RewriteRule ^/s([^/])+?/$ /index.php?s=$[L]
RewriteRule ^chat forumdisplay.php?f=10 

does not work for "chat" ... any ideas what is wrong with the above examples

I would avoid doing this entirely. You are emulating directories and all of your images (and in my experience, even quick reply in vB3, of all things) gets broken.

Look at the links at my forum to see what I did as per an SEO suggestion of one of my moderators. It preserves the ID so that doesn't result in any queries.

gmarik 03-14-2004 05:36 AM

Filburt, no images are broken!


All times are GMT. The time now is 04:14 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00995 seconds
  • Memory Usage 1,750KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete