vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Mod_rewrite issues (https://vborg.vbsupport.ru/showthread.php?t=68118)

cinq 08-08-2004 03:03 PM

Mod_rewrite issues
 
Not sure if this is the right place to post this, mods please move accordingly if not. Thanks

Have an issue with mod_rewrite.
I ran the online generator at WebmasterTool kit and this is what was generated for me.

PHP Code:

Options +FollowSymLinks
RewriteEngine on
RewriteRule mypage
/(.*)/(.*)/(.*)/(.*)/$ /forum/mypage.php?$1=$2&$3=$

This is the common URL without mod_rewrite implemented :
PHP Code:

http://www.mydomain.com/forum/mypage.php?do=view&id=1 

Using the above code, this is what will be displayed :
PHP Code:

http://www.mydomain.com/forum/mypage/do/view/id/1 

How do I go about only listing this:
PHP Code:

http://www.mydomain.com/forum/mypage/1 

What changes must I make to the mod_rewrite code above ?

Any help would be most appreciated.
Thanks :)

Xenon 08-08-2004 03:15 PM

just add that as rewrite rule:

Code:

RewriteRule mypage/(.*)/$ /forum/mypage.php?do=view&id=$1

Dean C 08-08-2004 03:36 PM

Code:


RewriteRule mypage/(.*)/?$ /forum/mypage.php?do=view&id=$1

I think you need that questionmark in there :)

cinq 08-08-2004 11:32 PM

Thanks a million guys ! :D

So I am to have a RewriteRule for every page I want 'translated' , can I put them all one after another ( as in line by line ) ?

Sorry if this sounds dumb ( am new to this and frankly still don't quite get it ) :(

Xenon 08-09-2004 12:52 PM

yes you can :)

cinq 08-09-2004 01:11 PM

Got it, thanks again :D

Xenon 08-09-2004 09:50 PM

you're welcome :)

cinq 08-16-2004 12:45 AM

For those who may be interested in mod_rewrites or in case this thread comes up in a search,

this following link may prove useful to you :

http://www.daniweb.com/techtalkforums/thread9379.html

:)


All times are GMT. The time now is 08:15 AM.

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.00998 seconds
  • Memory Usage 1,725KB
  • 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
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)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