Aerospace Engineering News Contact Us About Us University of Illinois University of Illinois
Current News & Events
News

AE Teams Sweep Space Design Competition

Aerospace Engineering teams from the University of Illinois swept all awards in the recent 2007-2008 Undergraduate Team Space Design Competition, sponsored by the American Institute of Aeronautics and Astronautics Foundation.

Boeing recognizes AE graduate student in international competition

AE graduate student Manu Sharma was among three University of Illinois students recently honored in the Boeing 2008 Student of the Year Awards.

Events

October 13
AE 590 Seminar
The Birth of Fixed Wing Micro Air Vehicles: A Historical Perspective

October 28
AE 590 Seminar
To Be Announced

 
Computing

.htaccess file


What does a basic .htaccess file look like?

Here is an example on what at .htaccess file should look like:

<Limit GET>
AuthUserFile /site/ae/groups/htdocs/<mygroup>/<mysecuredirectory>/.htpasswd
AuthName "Enter Password"
AuthType Basic

require valid-user
</Limit>

Here is what a typical .htpasswd file should look like:

user1:as134Yd32291DSLDFa
user2:3124ASDasdf2314daA

The following website can be used to create encrypted entries:

 .htpasswd Content Generator

 The .htaccess file should be located in the directory you wish to secure and the .htpasswd should be located in the directory referenced in the .htaccess file.


I want to use .htaccess, but I don't know the path to my files.

Given the setup and the lack of direct access to the files. .htaccess is slightly more difficult to configure. The path you the files on the server are as follows:

http://www.ae.uiuc.edu/<some_dir>/<some_other_dir> would be here:
/site/ae/groups/htdocs/<some_dir>/<some_other_dir>

For example:

http://www.ae.uiuc.edu/aiaa would be located here:
/site/ae/groups/htdocs/aiaa

or

http://www.ae.uiuc.edu/sis would be located here:
/site/ae/groups/htdocs/sis