Windows 服务器无法读取 CI URL(PHP 框架样式 URL)
我在 Code Igniter 中有一个具有 URL 样式的应用程序: http://localhost:909/index.php/main/login/
PHP 和MySQL 可以工作,但我无法在 IIS (Win server 2003) 中访问该 URL 的样式。
我可以成功访问包含 phpinfo() 脚本的 http://localhost:909/info.php/ 。
我应该检查什么?
我想知道我的 IIS 设置无法像 CI 那样读取文件(index.php/main/login) 我需要更改 IIS 设置并保留 URL 不变。
I have one application in Code Igniter with has URL style:
http://localhost:909/index.php/main/login/
PHP and MySQL has worked but I cannot access that URL's style in my IIS (Win server 2003).
I can successfully access http://localhost:909/info.php/ that contains phpinfo() script.
What should I check?
I wonder my IIS setting cannot read file as folder like CI has (index.php/main/login)
I need to change my IIS setting and leave the URL as it is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试检查您的route.php,或者您需要添加一个.htaccess 文件来配置重写引擎。
也许它可以帮助你http://codeigniter.com/wiki/mod_rewrite
Try to check your route.php or you need to add a .htaccess file to configure the rewrite engine.
Maybe it can help you http://codeigniter.com/wiki/mod_rewrite
抱歉,我只是在代码上犯了一个错误,
index.php 应该位于 localhost 内的另一个子文件夹内。
感谢您的所有回答..
sorry all, i just make a mistake on my code,
the index.php should be inside another subfolder inside localhost.
thanks for all your answer ..