".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
[美国服务器](https://www.idcspy.com/)商家Hostwinds成立于2010年,多年来专注于服务器产品创新和质量改进,国内用户使用较多的是Hostwinds[美国云主机](https://www.idcspy.com/cloud-hosting.html "美国云主机")VPS产品,采用SSD固态硬盘存储,提供有全球CDN加速功能,访问速度快,适用于建设外贸网站。我们在搭建网站前,通常需进行基础的环境配置,比如安装Apache,下面来看下主要步骤介绍。
本文以[Hostwinds](/#) VPS服务器为例,首先我们可通过SSH工具远程登录到服务器上,然后确保操作系统是最新的。
> yum update
安装[Apache](/#)作为网络服务器,出现提示时,键入“Y”以确认信息。
> yum install httpd
启用Apache服务器。
> systemctl enable httpd
将Apache设置为系统启动时自动启用。
> systemctl start httpd
检查Apache服务器状态。
> systemctl status httpd
Apache安装完成并通过验证后,打开浏览器输入服务器IP地址或域名进行访问,正常情况下如果出现类似下图的测试页面,表明Apache安装配置成功。
![](https://www.idcspy.com/wp-content/uploads/2021/12/1-5.jpg)"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/104757.html