Jump to content

Adam

Moderators
  • Posts

    5,717
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Adam

  1. Cheers for the reply.. I've had a good look round now and I've come up with the following... RewriteEngine on RewriteRule ^browse/([a-zA-Z0-9_]+)/id/([a-zA-Z0-9]+)/?$ index.php?class=$1&id=$2 [L] RewriteRule ^browse/([a-zA-Z0-9_]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9]+)/?$ index.php?class=$1&model=$2&id=$3 [L] RewriteRule ^browse/id/([a-zA-Z0-9]+)/?$ index.php?id=$1 [L] RewriteRule ^browse/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$ index.php?class=$1&model=$2 [L] RewriteRule ^browse/([a-zA-Z0-9_]+)/?$ index.php?class=$1 [L] It does work, and quite well.. but is that a long way round to do it? could it be done with just like one regular expression (bare in mind it's not always "class", "model" and "id" in the URL.. "model" and "id" may not be in the URL, sometimes it may just have "class" and "id" in the URL, and also sometimes it may just be "id" in the URL..) so it is quite complicated... any help? cheers!
  2. Doubt you'd get one for free that'd be any good.. you'll need to look into creating a crawler / spider.. you'll find millions of results on google.. Adam
  3. Hey all... am tryin to use mod rewrite to make some friendly URLs for a site i've been working on for a family friend .. basically the main file to browse is called "Shop.php" ... there's several parameters passed to it and it works on conditionals depending whats been passed, so... if just "c" (which stands for class) is passed obviouslly it just returns the cars with the class of ### .. if "c" and "m" (which stands for model) are passed it will obviouslly return cars with class of ### and model ###.. if "c", "m" and "id" are passed .. OR .. just "id" it will return the car listed under that ID.. so some examples could be: - shop.php?c=SL_Class - shop.php?c=SL_Class&m=R230 - shop.php?c=SL_Class&m=R230&id=C6 - shop.php?id=C6 what i'm struggling to do is create a .htaccess file which will rewrite the files right so i could have: - shop/SL_Class/ - shop/SL_Class/R230/ - shop/SL_Class/R230/C6/ - shop/C6/ I've had a good butchers on the internet but couldn't find any help .. has anyone got a decent tutorial about something similar or any help they could giv me? Thanks a lot, Adam
  4. you can use cron if you've got a linux web server...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.