Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VPS (Virtual Private Server) を指す複数のドメインがあります。私が望むのは、たとえば、Tomcat を使用したアプリがあるため、次のように記述した場合www.domain1.com、 にリダイレクトすることです。、 toなどwww.domain.com:8080/app1と同じです。www.domain2.comwww.domain2.com:8080/app2
www.domain1.com
www.domain.com:8080/app1
www.domain2.com
www.domain2.com:8080/app2
htaccessでできますか?
私は私の問題を解決しました:
RewriteCond %{HTTP_HOST} ^www.domain1\.com$ RewriteRule ^(.*) http://www.domain1.com:8080/app1$1 [R=301,L]
.htaccessで、他のものと同じです。