Rubymine(Jetbrains) 本地服务器.我可以让它从本地主机根运行吗? [英] Rubymine(Jetbrains) local server. Can I get it to run from localhost root?

查看:31
本文介绍了Rubymine(Jetbrains) 本地服务器.我可以让它从本地主机根运行吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Currently when I open the html file I'm working on it takes me to

http://localhost:63342/project-folder/index.html

Is there a way to set Rubymine to run my project from the root, eg.

http://localhost:63342/index.html

解决方案

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:

  1. 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.

  2. 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

这篇关于Rubymine(Jetbrains) 本地服务器.我可以让它从本地主机根运行吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆