在 wampserver 中重定向索引页

发布于 2024-11-03 08:40:52 字数 326 浏览 1 评论 0原文

我在 wampserver 中创建一个站点,方法是创建一个包含所有站点页面的文件夹,并

将该文件夹命名为例如 xxxx

在运行 http://localhost 它打开wamp服务器的索引

我想要的是当我运行本地主机时打开xxxx的索引,而不

在路径中添加xxxx,例如 http://localhost/xxxx

就是这样 可能的

i create a site in a wampserver by creating a folder that include all site pages and named

the folder for example xxxx

when i run http://localhost its open the index of the wamp server

what i want is to open the index of xxxx when i run the localhoust without adding xxxx

in the path like http://localhost/xxxx

so is that possible

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

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

发布评论

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

评论(2

我爱人 2024-11-10 08:40:52

在您的 httpd.conf 文件中找到 DocumentRoot "C:/wamp/www"

并将其更改为 DocumentRoot "f:/wamp/www/xxxx"代码>

in your httpd.conf file find DocumentRoot "C:/wamp/www"

and change it to DocumentRoot "f:/wamp/www/xxxx"

南七夏 2024-11-10 08:40:52

这里有几种可能的解决方案:

  1. 重新配置 apache 以使用 xxxx 作为文档根
  2. 在主目录中设置到子目录的重定向,即通过 .htaccess 重写规则或通过发送重定向 header( ) 在根 index.php 文件中。

You have several possible solutions here:

  1. Reconfigure apache to use xxxx as document root
  2. Setup a redirect in your main directory to the subdirectory, i.e. via a .htaccess rewrite rule or by sending a redirection header() in the root index.php file.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文