08-03-2009, 03:06 PM
|
#1 (permalink)
|
|
The Addict
Join Date: Jun 2008
Posts: 335
Thanks: 2
|
mod_rewrite help
So I think today is an off day, but I can't manage to write the current rule to make:
domain.com/profile/name.foo
picked up as:
domain.com/profile/?user=name.foo
So far I have this
Code:
RewriteEngine On
Options +FollowSymLinks
RewriteRule /re/profile/(.*)/$ /re/profile/?user=$1
It throws off a 500 error which I presume is it's way of telling me I have some sort of syntactical error
|
|
|
|