『壹』 怎麼用域名直接訪問網站首頁
購買一個域名,製作一個網站,直接能用域名訪問網站首頁了
『貳』 怎麼修改tomcat默認訪問首頁
1. 如果僅僅需要修改首頁內容,在 /webapps/ROOT/WEB-INF/web.xml 中添加或修改:
代碼如下
復制代碼
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Copyright 2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
2.修改$CATALINA_HOME/webapps/ROOT/index.jsp頁面
2. 直接將項目部署到 ROOT 目錄:
把原來的 ROOT 目錄清空;
發布你自己的項目到 ROOT 目錄下;
發布程序 /webapps/ROOT/WEB-INF/web.xml 中需要有默認首頁定義;
重啟 tomcat。
3. tomcat 的 server.xml 中配置:
在 <Host> 標簽里添加或修改:
代碼如下
復制代碼
<Context path="" docBase="../webapps/myWeb"/>
4. 首頁跳轉:
修改/webapps/ROOT/index.html,添加js腳本:
代碼如下
復制代碼
<script language="javascript">
window.location.href = "http://" + window.location.hostname + "/myProj";
</script>
『叄』 如何讓訪問都從首頁進入網站
JS這個語句可以做到!
<script language="javascript">
var path=parent.location.href;
if (path.indexOf("index.htm")<0)
{
window.location="index.htm";
}
</script>
呵呵,如果感覺對了就結貼給分吧!呵呵!
『肆』 請問怎麼把首頁在不聯網的情況下,也可以訪問首頁!
只能把電腦的首頁給下載下來,在瀏覽器窗口,點擊文件-另存為,選擇要存的位置,然後在打開那個親首頁,就是不用聯網也能瀏覽首頁了。
『伍』 如何設置才能在訪問首頁的時候,域名後面不要帶index.html類似的頁面
這個是需要你配置apache,apache重寫來實現這個功能。如果你不想重寫,來個治標的,那就把welcome設置成默認訪問的,這個就可以實現了,但是其他的不行。
『陸』 「訪問了您的主頁」是什麼意思
這是屬於引導性標題,告訴你,在這個欄目中,是有訪問過你主頁的統計內容。
顧名思義:就是訪問過你主頁的人的統計。
『柒』 怎樣把經常要訪問的網頁設為首頁
把經常要訪問的網頁地址復制/IE工具/Internet選項/可以更改的主頁,把地址粘貼到裡面/按確定就可以了.
『捌』 如何讓網站首頁訪問不了其他頁面可以訪問
首頁刪掉不就行了
『玖』 html訪問一個頁面
採用一個頁面內嵌一個 iframe
然後把iframe 設置為 height 0 width 0
<!doctypehtml>
<html>
<head>
<metacharset="UTF-8">
<metaname="Generator"content="EditPlus®">
<metaname="Author"content="">
<metaname="Keywords"content="">
<metaname="Description"content="">
<title>Document</title>
</head>
<body>
頁面
<iframesrc="http://www.maomao365.com"height="0"width="0"/>
</body>
</html>
看一下這個寫法是不是你想要的哦
如有疑問,請及時溝通。