Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 06-15-2004, 03:33 PM   #1 (permalink)
Please touch this.
 
Halx's Avatar
 
Owner/Admin
Location: Manhattan
[apache] mod_rewrite

I'm having trouble with mod_rewrite and htaccess.. here's what I'm trying to do:

I'm trying to write up an .htaccess file that will allow me to set up static URLs that convert to dynamic URLs.

http://www.blahblah.com/gallery/3/39820
rewrites to
http://www.blahblah.com/gallery.php?id=3&pic=39820

Honestly, I don't have anything because I don't know if what I have has anything to do with that I'm trying to accomplish. I need some guidance!
__________________
You have found this post informative.
-The Administrator
[Don't Feed The Animals]
Halx is offline  
Old 06-15-2004, 05:32 PM   #2 (permalink)
Banned
 
cthulu23's Avatar
 
Hmmm...although I've never used mod_rewrite, it looks like it shouldn't be too hard if you're familiar with regular expressions. Here's some sample code for the .htaccess file that may or may not work, but might point you in the right direction:

RewriteEngine on
RewriteLog logs/rewrite
RewriteLogLevel 9
RewriteRule ^/gallery/([0-9+])/([0-9+])$ /gallery.php?id=$1&pic=$2

The log level of 9 is excessive (use 1 or 2, if any), but will help you figure out why things are working the way they are.

Does the regexp make sense to you or should I explain what it's doing?
cthulu23 is offline  
Old 06-15-2004, 10:32 PM   #3 (permalink)
Fluxing wildly...
 
MrFlux's Avatar
 
Location: Auckland, New Zealand
RewriteEngine on
RewriteRule ^gallery/([0-9]+)/([0-9]+)$ gallery.php?id=$1&pic=$2

Will work, the slash at the start of cthulu's breaks it (did for me anyway).
__________________
flux (n.)
Medicine. The discharge of large quantities of fluid material from the body, especially the discharge of watery feces from the intestines.

Last edited by MrFlux; 06-15-2004 at 10:57 PM..
MrFlux is offline  
Old 06-16-2004, 04:16 AM   #4 (permalink)
Banned
 
cthulu23's Avatar
 
Thanks for the correction. I really should test things out before I post them

BTW, the regexp that I used is pretty broad,...it could easily be more restrictive if you know the possible range of numbers that you'll be matching, eg - between a one and twenty digit numeral.

I've never messed with mod_rewrite, but it looks like some cool stuff.
cthulu23 is offline  
Old 06-16-2004, 01:00 PM   #5 (permalink)
Please touch this.
 
Halx's Avatar
 
Owner/Admin
Location: Manhattan
Thank you... I will try this out
__________________
You have found this post informative.
-The Administrator
[Don't Feed The Animals]
Halx is offline  
Old 06-18-2004, 06:08 AM   #6 (permalink)
Banned from being Banned
 
Location: Donkey
Just curious, but what's the benefit of a directory-like structure as opposed to a querystring-based page?

I notice CNN has the directory structure request as well.
__________________
I love lamp.
Stompy is offline  
Old 06-18-2004, 06:25 AM   #7 (permalink)
Banned
 
cthulu23's Avatar
 
Long query strings are ugly and they reveal quite a bit about your server structure. Using mod_rewrite also allows you to change your back end script without changing the links on your pages.
cthulu23 is offline  
 

Tags
apache, modrewrite


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 09:11 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54