在 wampserver 中重定向索引页
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的
httpd.conf
文件中找到DocumentRoot "C:/wamp/www"
并将其更改为
DocumentRoot "f:/wamp/www/xxxx"
代码>in your
httpd.conf
file findDocumentRoot "C:/wamp/www"
and change it to
DocumentRoot "f:/wamp/www/xxxx"
这里有几种可能的解决方案:
.htaccess
重写规则或通过发送重定向header( )
在根index.php
文件中。You have several possible solutions here:
.htaccess
rewrite rule or by sending a redirectionheader()
in the rootindex.php
file.