Skip to content

Latest commit

 

History

History
35 lines (18 loc) · 481 Bytes

README.md

File metadata and controls

35 lines (18 loc) · 481 Bytes

HTTP-Web-Server

Author: Jacob Wilkins

Language: Java

Compilation:

javac HTTPServer.java

Run:

java HTTPServer

Links to test in browser:

200 OK Test:

localhost:6789

404 File Not Found Test:

localhost:6789/aaa

301 Moved Permanently Test 1:

localhost:6789/old_page.html

Should redirect to: localhost:6789/new_page.html

301 Moved Permanently Test 2:

localhost:6789/old_page2.html

Should redirect to: localhost:6789/new_page2.html