http://localhost:63342/index.html
-- you cannot have this kind of URL with built-in web server .. as IDE does not know what project to serve (as it works for ALL your projects a not only currently opened).
When built-in web server is in use, the URL has to have some hint (PROJECT_NAME
) that would tell what project to serve (where to take files from).
Built-in web server supports 2 kind of URLs (both of them will serve the same file):
http://localhost:63342/PROJECT_NAME/index.html
http://PROJECT_NAME:63342/index.html
If you want 2nd URL, then you will have to do these steps:
Create Deployment entry (Settings | Deployment
) and mark it as Default for this project. The URL defined there (http://PROJECT_NAME:63342/
) will be used when opening pages from within IDE.
In your hosts
file (or your local DNS server, if you have one) define an entry that would point PROJECT_NAME
to your IP. For example (for hosts
file): 127.0.0.1 PROJECT_NAME
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…