サイトURL生成(インフラ)
サーバー上にフォルダ毎にプロジェクトを分けた場合に、フォルダ毎にサイトURLを付ける作業。
1.サーバー上(htdocs以下)に新規に作りたいサイトをフォルダ分け
例:
・htdocs/
・site-A/
・site-B/
・site-C/ ← New
*EC-CUBEならフォルダ毎入れる
2.Apacheのhttpd.confを修正
ここ /etc/httpd/conf/httpd.conf
①付与したいポートをListen追加する
Listen 8989
②どこかにVirtualHostの記述があるのでそこに下記記述を追加
httpd.conf
<virtualhost *:8989> #←数字は任意
DocumentRoot "/var/www/html/htdocs/site-C" #対象フォルダのroot
</virtualhost>
3.Apacheの再起動
# /etc/init.d/httpd restart
もしくは
# service httpd restart
Author And Source
この問題について(サイトURL生成(インフラ)), 我々は、より多くの情報をここで見つけました https://qiita.com/Youz/items/aa544faf59089414b348著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .