如何更改 EasyPHP 的默认 URL 位置
How do I alter the default URL location of EasyPHP
EasyPHPs 主页访问自:http://127.0.0.1/home/。
Virtual Host manager 在hosts文件中设置一个本地域名重定向到127.0.0.1。
当我导航到 'mylocaldomain.com/home/' 时,我得到一个错误 'The requested URL was not found on this server.' 因为 '/home/index.php' 用于 EasyPHP 的管理面板。
我需要在本地域中使用“/home/”,因此我想尝试更改 EasyPHP 主页使用的默认 URL。
有什么想法吗?
我刚遇到这个问题 运行 你的问题。你是这样解决的:
- 访问您的 EasyPHP Apache 配置文件(在 Windows 上,我右键单击任务栏图标,转到配置,然后单击 Apache)
- 查找行
Alias /home "${path}/binaries/home"
- 我的是第 359 行
- 将第一个
/home
更改为 /something-you-won-think-to-use-on-your-websites
- 重启服务器
应该就可以了
EasyPHPs 主页访问自:http://127.0.0.1/home/。 Virtual Host manager 在hosts文件中设置一个本地域名重定向到127.0.0.1。 当我导航到 'mylocaldomain.com/home/' 时,我得到一个错误 'The requested URL was not found on this server.' 因为 '/home/index.php' 用于 EasyPHP 的管理面板。
我需要在本地域中使用“/home/”,因此我想尝试更改 EasyPHP 主页使用的默认 URL。
有什么想法吗?
我刚遇到这个问题 运行 你的问题。你是这样解决的:
- 访问您的 EasyPHP Apache 配置文件(在 Windows 上,我右键单击任务栏图标,转到配置,然后单击 Apache)
- 查找行
Alias /home "${path}/binaries/home"
- 我的是第 359 行 - 将第一个
/home
更改为 /something-you-won-think-to-use-on-your-websites - 重启服务器
应该就可以了