1、apache2.4代理轉發tomcat7html
經過http_proxy作tomcat的端口轉發:
web
描述:將遠程服務器映射到本地服務器的URL空間apache
語法:ProxyPass [路徑] !|url [鍵=值鍵=值 ...]] [nocanon]tomcat
上下文:server config, virtual host, directorybash
狀態:擴展服務器
模塊:mod_proxyide
配置httpd.conf:ui
#保證如下模塊加載url
LoadModuleproxy_module modules/mod_proxy.sospa
LoadModuleproxy_http_module modules/mod_proxy_http.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
注:mod_proxy_balancer這個模塊在2.4之中會有以下報錯
必需要mod_slotmem_shm這個模塊也開啓才行的
#配置ProxyPass
vi /etc/httpd/conf/httpd.conf <VirtualHost *:80> ServerAdmin webmaster@jsoft.cn ServerName 10.34.2.10 ProxyPreserveHost On ProxyPass /test http://10.34..2.10:8080/test ProxyPa***everse /test http://10.34..2.10:8080/test ProxyPreserveHost On ProxyPass /two http://10.34..2.12:8082/two ProxyPa***everse /two http://10.34..2.12:8082/two </VirtualHost>
2、HTML meta refresh 刷新與跳轉(重定向)頁面
refresh 屬性值 -- 刷新與跳轉(重定向)頁面 refresh 用於刷新與跳轉(重定向)頁面 refresh 出如今http-equiv屬性中,使用content屬性表示刷新或跳轉的開始時間與跳轉的網址
利用apache刷新與跳轉帶出二級項目名,修改"D:\Program Files\Apache24\htdocs\index.html"文件
1秒以後跳轉到test頁面:
<html> <head> <meta http-equiv="refresh" content="1;url=/test"> </head> <body> </body> </html>