|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Oct 2003
Location: Atlanta
Posts: 2,840
|
any good with Symbolic Links?
i need a little help. i'm trying to have my user accounts load at the root level. example would be www.domain.com/profile.php?id=1 to load as www.domain.com/UserJoe/
is there a code in which i can link www.domain.com/profile.php?id=1 to load symbolicly as www.domain.com/UserJoe/ if not a symbolic link then something clean maybe a htaccess something that won't cause cpu strain. thanks in advance |
|
|
|
|
|
#2 |
|
Confirmed User
Join Date: Dec 2001
Location: CrackYaMental
Posts: 4,365
|
I've discussed something similar in a thread a while back...let me see if I can dig it up for you.
__________________
Insert Value Here. |
|
|
|
|
|
#3 |
|
Confirmed User
Join Date: Dec 2001
Location: CrackYaMental
Posts: 4,365
|
__________________
Insert Value Here. |
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Oct 2003
Location: Atlanta
Posts: 2,840
|
so i could use mod_rewrite is that faster/better than a symbolic link? i'll have well over 300+ accounts when my site goes live, can a .htaccess with mod_rewrite handle all of this?
|
|
|
|
|
|
#5 |
|
Confirmed User
Join Date: Oct 2003
Location: Atlanta
Posts: 2,840
|
RewriteEngine On
RewriteBase / RewriteRule test2/?$ profile.php?id=1 [L,NC] that works but http://www.domain.com/test2/ doesn't load images on the page, http://www.domain.com/test2 works fine though |
|
|
|