I read the thread about fake domains, and I had an idea that I could make a page to redirect to a Scratch user page.
Basically,
http://server/user >> http://server/user.php?user=user >> http://scratch.mit.edu/users/user
Anyone know how to do this?
Offline
technoboy10 wrote:
I read the thread about fake domains, and I had an idea that I could make a page to redirect to a Scratch user page.
Basically,
http://server/user >> http://server/user.php?user=user >> http://scratch.mit.edu/users/user
Anyone know how to do this?
Simple.
I'm going to make this small tutorial using my program (in my siggy, if you want it)
First, open it. You will be prompted to type in the IP. I belive this should work with URLs, so this is a first attempt.
Type in http://scratch.mit.edu/users/
Then you will be prompted to type in your custom domain name.
Type in somthing along the lines of scratchuser.com/
Now, you should be able to only need to type in scratchuser/username to access a user's profile!
WAIT. It doesn't work.....
Well, I made the scratch.mit.edu shorter by finding the IP of scratch.mit.edu
It's 18.85.28.105 if you wanted to know.
Offline
Like this:
/etc/hosts
# your other stuff here 123.456.789 server
.htaccess
# other stuff here RewriteEngine On RewriteRule ^users/(.*)$ /user.php?user=$1
Offline