vote up 1 vote down star
1

I am trying to setup a mod rewrite rule to change urls like:

http://www.site.com/play/4435

Into:

http://www.site.com/index.php?play=4435

Below is what I have but it is not quite right...

RewriteEngine On
RewriteRule ^([^/\.]+)/?$ index.php?play=$1 [L]
flag

80% accept rate

2 Answers

vote up 0 vote down check
RewriteEngine On
RewriteRule ^play/([^/]*)$ /index.php?play=$1 [L]

That should change http://www.site.com/play/4435 into http://www.site.com/index.php?play=4435

Hope that helps :)

link|flag
They probably don't want play hardcoded into the rules there. – Crises of Identity Oct 11 at 5:31
Yea that does all kinds of weird things like. No images load. No flash loads... – ian Oct 11 at 5:46
If everything works but images & flash then you will probably need to change the way you are linking to the resources. Are you hardcoding them eg, <img src="site.com/image.gif">; Or is it relative, <img src="/image.gif"> Try swapping around what you have with the alternative and see if it works. =) – Cal S Oct 11 at 6:33
I have my images as something like "images/image.png" so I will try putting in full URLs... – ian Oct 14 at 15:41
vote up 0 vote down

Here's a more generic rule that works for more than just 'play'.

RewriteEngine On
RewriteRule ^(.+)/(.+)$ /index.php?$1=$2 [L]
link|flag
That does the same thing. As the other answer. All my urls inside my page are getting changed to www.site.com/play/whatever – ian Oct 11 at 5:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.