netbeans插件?重写网址

时间:2013-07-11 15:47:34

标签: url-rewriting netbeans-plugins

目前在glassfish服务器上运行的netbean项目正在显示http://localhost:8080/projectname/index.html

我需要将其更改为http://localhost:8080/homepage

如何在标题栏中更改此网址。

或者是制作.htaccess文件的唯一方法,该文件需要通过在WEB-INF等中放置.htpasswd来加密。或者可能有一个插件。

请提前告知我们

戴夫

1 个答案:

答案 0 :(得分:0)

我在HTML5中使用history.pushstate(null, "title", new url")解决了这个问题 这只重命名为index.html index-1等。所以在netbeans中如果你右键点击项目 - >去属性 - >并转到RUN ...您可以更改上下文路径并删除项目文件夹,以便http://localhost:8080/homepage而不是http://localhost:8080/project/homepage.

为此,我需要一些谷歌没有提供的进一步建议。我想重定向到页面中的锚标记,例如href=" /index6.html#content"。但是,使用history.pushstate()表示会忽略锚标记,并始终将页面指向pushstate值。不管怎么说?

最好的问候

大卫