Jump to content

Mod Rewrite Help


killah

Recommended Posts

Short answer:

 

RewriteRule ^game/viewuser/([\d]+)$ /view.php?user_id=$1

RewriteRule ^game/base/buy/([\d]+)$ /base.php?act=buy&item_id=$1

 

(Or if you want the second thing to be dynamic:

 

RewriteRule ^game/base/([^/]+)/([\d]+)$ /base.php?act=$1&item_id=$2

Link to comment
Share on other sites

Use absolute paths.

 

 

Paths are resolved relative to the directory, so if you have something like:

 

"css/style.css"

 

It will try to load /game/viewuser/1/css/style.css (or what ever), and that's obviously not what you want.

 

 

Yes, you could do some rewrite stuff to make relative paths work, but it would kill caching.  Just use absolute paths (IE "/css/style.css").

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.