On 7/8/05, Marian Briones <[EMAIL PROTECTED]> wrote: > Would an .htaccess file be created in each directory (member > directory)? I thought of doing a 301 redirect to the dynamic page > each time, carrying in the member variable information, i.e. > ../profilepage.php?memberID=423
You will not be creating directories. You'll have one page to display the member's profile. The .htaccess file would tell the web server to forward every request for a non-existant directory to that specific page you created, passing the directory as a parameter. This way, you can know which member the user is trying to view. You'll have to read the documentation, as I don't have much experience with rewrite rules. http://httpd.apache.org, search for rewrite. -- Bruno Lustosa, aka Lofofora | Email: [EMAIL PROTECTED] Network Administrator/Web Programmer | ICQ: 1406477 Rio de Janeiro - Brazil | Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
