作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在使用 PHP codeigniter 和 chriskacerguis/codeigniter-restserver。
在日志文件中,我看到了 404。因为某些 /index 是如何在末尾追加的。正确的网址是 api/CurrentYear
DEBUG - 2016-02-02 02:14:48 --> UTF-8 Support Enabled
DEBUG - 2016-02-02 02:14:48 --> Global POST, GET and COOKIE data sanitized
ERROR - 2016-02-02 02:14:48 --> 404 Page Not Found: api/CurrentYear/index
任何人都可以告诉我为什么/index 在末尾添加或任何解决方案。
我的 .htaccess 看起来像这样。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/(favicon\.ico|apple-touch-icon.*\.png)$ [NC]
RewriteRule (.+) index.php?p=$1 [QSA,L]
</IfModule>
最佳答案
如果你想从 URL 中删除 index.php
那么遵循代码肯定适合你。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
<IfModule mod_rewrite.c>
关于php - 如何在最后摆脱/索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35147336/
我是一名优秀的程序员,十分优秀!