index.html
Having trouble viewing your published project? If you are getting something like "Page not found..." then you have the incorrect URL, you have your files in the incorrect place, or the files don't have the correct permissions/properties to be "viewable" by the public. THE URL IS DIFFERENT THAN THE FILEPATH! For example, here are what my filepaths and URL for when I published hw1ober.m
within MATLAB would be
ORIGINAL FILEPATH OF M-FILE: file:///Volumes/dfs/G/loberbroeckling/www/loy1234567/ma302/hw1ober.m
FILEPATH: file:///Volumes/dfs/G/loberbroeckling/www/loy1234567/ma302/html/hw1ober.html
URL: http://evergreen.loyola.edu/loberbroeckling/www/loy1234567/ma302/html/hw1ober.html
NOTE that the above filepaths may look different than yours; this is the filepath that appears on my MAC when I'm connected to the server that allows access to the G-drive.
After double-checking that you have the correct URL, and you are are still not able to view your project (you get an error like "unauthorized to view..."), it may be that your "www" folder may not be set-up correctly to view webpages, and thus the permissions/properties are incorrect. This is especially true if there is no "index.html" file within your "www" folder on the G-drive. Here's how to fix that:
<!doctype html>
<html>
<head>
<title>Basic webpage</title>
</head>
<body>
This is a basic webpage.
</body>
</html>