I am running a python SimpleHTTPServer and serving a html file. That html file includes couple of javascript files. When the html file is served by the server I get the following errors.
1.0.0.127.in-addr.arpa - - [15/Jun/2012 13:42:54] code 404, message File not found
1.0.0.127.in-addr.arpa - - [15/Jun/2012 13:42:54] "GET /lib/jquery-ui/jquery-ui.min.js
Html file contents (only relevant lines shown):
<script type="text/javascript" src="../../lib/jquery-ui/jquery-ui.min.js"></script>
Python command used to run the server. It is run in the directory where index.html is present
python -m SimpleHTTPServer 8000
I have the files jquery-ui-min.js in my local filesystem. But the search somehow is stripping the ../.. and searching in /lib/jquery-ui/jquery-ui.min.js