.htaccess question (mod_rewrite)

Status
Not open for further replies.


RewriteRule ^/dynamicpage.php?variable=(.*) /$1 [R]

should do the trick, you may need to play around with it a bit though I haven't tested it.
 
What would be the difference from what I posted, I have been redirecting links and pages with what I posted because its the only way I know how.

Whats the difference, I know what I posted is a 301 redirect......

Jer
 
301 redirect tells the requester to go to another location.

The rewriterule I posted takes the request url (/keyword) and rewrites it inside apache. So the client never knows that they are somewhere else.
 
Status
Not open for further replies.