我们需要使用Commonly on LAN Connection项目,所以如果有网络专家请帮帮我。
答案 0 :(得分:1)
=============================================== ==
打开C:\ xampp \ apache \ conf \ extra \ httpd-vhosts.conf。
取消评论第20行(NameVirtualHost *:80)。
添加虚拟主机(〜第36行):
Intent iStartSaving = new Intent(getApplicationContext(), challengetab.class);
//******** Use getText() for getting the text from edit text & initialize the string i.e->"resultString","goalTitle" etc
resultString = moIncome.getText().toString();
goalTitle = etGoalNumber.getText().toString();
challengetitle = etGoalNew.getText().toString();
iStartSaving.putExtra("resultShow", resultString);
iStartSaving.putExtra("goalName", goalTitle);
iStartSaving.putExtra("titleChallenge", challengetitle);
iStartSaving.putExtra("resultShow", resultString);
ChallengeNew52.this.startActivity(iStartSaving);
=============================================== ============
打开您的主机文件(C:\ Windows \ System32 \ drivers \ etc \ hosts)。
添加
127.0.0.1 user.localhost
=============================================== ===============
注意:设置我写“your_virtual_path”
的路径现在,您可以通过浏览到http://user.localhost/
来访问该目录答案 1 :(得分:0)
默认情况下,XAMPP提供位于目录[xampp_installation_folder] / htdocs,*Â下的任何文件,这意味着您必须复制此目录中的所有HTML / PHP文件。但是,如果您为所有项目文件维护一个不同的文件夹,并且您希望XAMPP与* htdocs一起提供它们,该怎么办?
让我们让XAMPP做到这一点。
1)在任何文本编辑器中打开文件[xamp_installation_folder] /apache/conf/httpd.conf。
2)将目录更改为您自己的文件夹后,复制* htdocs *元素后面的行。 选项索引FollowSymLinks包括ExecCGI AllowOverride All 订单允许,拒绝 允许所有
3)然后搜索这个字符串:。在该元素内,添加一个新的别名如下:Alias / yoursite /“C:/ path / to / your / folder / yoursite /”
4)保存文件并重启XAMPP服务器。 在此之后,如果您在'c:/ path / to / your / folder'文件夹中有一个名为'yoursite'的网站,您可以使用以下URL直接访问它:* http://localhost:8080/yoursite/ *(假设您已更改XAMPP到8080)。
希望它会对你有所帮助:)。