Dynamic redirect

Tenant

New Member
Messages
13
Reaction score
0
Points
0
I have been working on this for hours and I cant seem to figure it out.

index.php? bunch of different vars and values

needs to redirect to

newdirectory/index.php? same bunch of variables

Is there a way to do this automatically like in a .htaccess file or something
 

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
It's always best to show your work. It helps us help you see what isn't working and gives us a better idea of exactly what you're trying to do.

Code:
RewriteRule ^index.php newdirectory/index.php
 
Top