如何在Cloud9中为YII2高级PHP应用程序设置虚拟主机?

时间:2018-07-02 14:46:47

标签: yii2 yii2-advanced-app cloud9-ide cloud9 aws-cloud9

我正在使用Yii2高级模板。它有一个前端和后端,我想通过import React from 'react'; import $ from 'jquery'; class Main extends React.Component { componentDidMount() { $(() => { let currentId = 'about'; $(document).scroll(() => { $('.path').each(() => { const top = window.pageYOffset; const distance = top - $(this).offset().top; const path = $(this).attr('id'); if (distance < 50 && distance > -50 && currentId !== path) { window.history.pushState(null, null, '/' + path); currentId = path; } }); }); }); } render() { return ( <main role="main"> <About /> <Contact /> </main> ); } } export default Main; http://<workspacename>-<username>.c9.io进行访问-如何在不破坏主机的情况下设置这些路径。

该应用程序在Apache上启动。

0 个答案:

没有答案