GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/MichaelMalz/CST1611/Resources/Week/04/ |
Upload File : |
# 05.conf # Alias URL path # Redirect URl URLto # The first URL does not have to exist. <VirtualHost *> DocumentRoot "C:/CST1611/Week/05" ServerName week.test ErrorLog logs/week.test.Error.log CustomLog logs/week.test.Access.log common # Alias from folder to folder. Alias "/subfolder" "C:/Data_WWW/CST1611/Lab02" # Alias from folder (Does not exist) to another folder. Alias "/foo" "C:/Data_WWW/CST1611" # Alias from file to file. Alias "/This_is_week_5.txt" "C:/CST1611/Week/05/subfolder/subfolder.txt" # Alias from folder to a file. Alias "/going_to_file/" "C:/CST1611/Week/05/Going_to_dir.txt" # Alias from file to folder. Alias "/Going_to_dir.txt" "C:/Data_WWW" # Redirect from folder to folder. Redirect "/redirectedfolder" "https://cst.ridgewater.edu/JimMartinson/CST1611/Schedule/" # Redirect from folder (Does not exist) to another folder. Redirect "/nothere" "/going_to_file" # Alias from file to file. Redirect "/redirect.txt" "/This_is_week_5.txt" <Directory "C:/CST1611/Week/05/"> Options All +MultiViews AllowOverride All Require all granted </Directory> <Directory C:/Data_WWW/> Options All +MultiViews AllowOverride All Require all granted </Directory> </VirtualHost>