Jump to content
MakeWebGames

Recommended Posts

Posted

I am trying to redirect files from a directory. I can do it, but I can't do it...

Heres what I got

This will redirect all files from findme.com/WHATEVER to findme.com/gamefiles

 

RewriteRule ^(.*)$ /gamefiles/$1

 

So it works to an extent, but now my main files in findme.com does not work. so I tried:

 

RewriteRule ^(.*)/^(.*)$ /gamefiles/$1

 

but not it don't redirect files but the main files in findme.com work

Any ideas?

Posted (edited)

bleh. Still having troubles...

 

RewriteCond %{QUERY_STRING}
RewriteRule ^(.*)/index.php(.*)$ gamefiles/index.php?&game=$1 [NC, L]
Edited by Sim
Posted

I want to keep my root directory intact

I want all sub directorys such as

root/sim

root/spudinski

root/hehe

to use the gamefiles directory. of course none of those directorys really exist.

Posted

Well, you can say all query strings without a dot(.) redirects, but it could cause problems.

There isn't something like a preg -v for PHP, that I know of. So an inverse option?

Try:

^.*(?!\.{3,4}$).*

 

Haven't tested, but I think it might work.

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.   Paste as plain text instead

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