Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

To secure a directory, you must place a file named .htaccess in the desired directory (i.e., Secure).

Example: /home/netID/edu.uconn.sitename/public_html/secure/.htaccess

Examples

Allow Anyone with a Valid NetID access:

AuthType CAS
require valid-user

Allow Only Certain Users Access:

AuthType CAS
require user NetID1
require user NetID2

To capture the NetID of the user who is logged into the secure directory, use the following code in your index.php file in the secure directory:

$netid=$_SERVER['REDIRECT_REMOTE_USER'];

  • No labels