在 PHP 和 Eclipse 中设置路径映射

发布于 2024-09-05 18:30:16 字数 456 浏览 4 评论 0原文

我刚刚在本地设置了我的网站,这样我就可以更轻松地测试我的页面。

Eclipse 已配置为在本地使用 XAMPP 服务器。

问题是我想将我的项目映射到我网站中的某个位置。

IE。在我的 Eclipse PHP 项目中,我有一个名为的文件夹,

com

我希望将其映射到

/com

webstie 中。

我尝试在 Eclipse 服务器设置的映射部分执行此操作,但没有成功。当我输入

http://localhost/com/

时,它应该转到我的项目文件夹,但是,当我输入其他内容时文件夹应该使用普通的网站文件夹。

我该怎么做?

I have just setup my website locally so I can test my pages more easily.

Eclipse has been configured to use an XAMPP server locally.

The problem is that I want to map my project to a certain place in my website.

ie. In my Eclipse PHP project I have a folder called

com

I want this to map to

/com

in the webstie.

I tried to do this in the mapping section of the Eclipse server setup but it didn't work. When I type

http://localhost/com/

It should go to my project folder, however, when I type other folder it should use the normal website folders.

how can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝咒 2024-09-12 18:30:16

好吧,我像这样编辑了 apache httpd.conf 文件并且它有效。

#Alias for com folder
Alias /com C:\PHP\workspace-php\php_project\com
<Directory "C:\PHP\workspace-php\php_project\com">
   Options Indexes FollowSymLinks MultiViews ExecCGI
   AllowOverride All
   Order allow,deny
   Allow from all
</Directory>

Well I edited the apache httpd.conf file like this and it works.

#Alias for com folder
Alias /com C:\PHP\workspace-php\php_project\com
<Directory "C:\PHP\workspace-php\php_project\com">
   Options Indexes FollowSymLinks MultiViews ExecCGI
   AllowOverride All
   Order allow,deny
   Allow from all
</Directory>
夜吻♂芭芘 2024-09-12 18:30:16

我已经在 [xampp]\htdocs 文件夹中创建了 Eclipse 工作区

I'd created my Eclipse workspace exactly on [xampp]\htdocs folder

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文