我正在使用 PHP codeigniter 和 chriskacerguis/codeigniter-restserver。

在日志文件中,我看到 404. 因为有些 /index 是如何在末尾追加的。
正确的 url 是 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 - 如何在最后摆脱/index,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35147336/

10-15 01:45