Welcome to the JaguarPC Community
JaguarPC
Sales: (888) 338-5261
Support: (888)-551-3050
Results 1 to 2 of 2

This is a discussion on mod_rewrite in the Open Discussion & Chit-chat forum
need to know if I can use this in my .htaccess file: -------------------------------------------------------------------------------- RewriteEngine On RewriteCond %{REMOTE_USER} ^userx RewriteRule ^/$ http://www.mysite.com/new/directory/userx/ [R] RewriteCond %{REMOTE_USER} ^usery7 ...

  1. #1
    JPC Member
    Join Date
    Oct 2002
    Posts
    2

    mod_rewrite

    need to know if I can use this in my .htaccess file:

    --------------------------------------------------------------------------------
    RewriteEngine On
    RewriteCond %{REMOTE_USER} ^userx
    RewriteRule ^/$ http://www.mysite.com/new/directory/userx/ [R]

    RewriteCond %{REMOTE_USER} ^usery7
    RewriteRule ^/$ http://www.mysite.com/new/directory/usery/ [R]
    ---------------------------------------------------------------------------------

    what it should do is redirect a selected user to a predefined directory. I do not want to a standerd redirect due to mutiple users accessing the directory each with their own predefined base directory, and i do not want to use a cgi script so I can keep the stress on the system down, and I thought it would be cool to use mod_rewrite.


    David Gutieirrez

  2. #2
    JPC Member
    Join Date
    Oct 2002
    Posts
    2

    got it working

    out of the spirit of hating posts with out happy ending I'll post what I got to work.

    .htaccess
    -------------------------------------------------------------------
    AuthType Basic
    AuthName "Protected"
    AuthUserFile /home/my/.htpasswds/welcome_directory/.passwd

    require valid-user

    RewriteEngine On
    RewriteCond %{REMOTE_USER} userY
    RewriteRule (.*) http://www.mysite.com/dir/subdirX/$1 [R]

    RewriteCond %{REMOTE_USER} userY
    RewriteRule (.*) http://www.mysite.com/dir/subdirY/$1 [R]

    --------------------------------------------------------------------

    anyone going to http://www.mysite.com/welcome_directory
    will go to a selected directory depending on their

    David Gutierrez
    Last edited by houseronin; 10-10-2002 at 01:20 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •