如何使用slim框架从url中删除index.php?

时间:2015-05-06 14:58:15

标签: php .htaccess url slim

我有这个网址:

http://localhost:8082/sistemaTareas/api/index.php/hello/jean/bergeret

打印:

HELLO JEAN BERGERET

我需要做同样的事情,但有了这个:

http://localhost:8082/sistemaTareas/api/hello/jean/bergeret

我需要配置.htaccess吗?

编辑:我看到了另一个答案,但没有解决我的问题。谁能指导我?

1 个答案:

答案 0 :(得分:0)

我认为您的网站apache配置中缺少AllowOverride All,以便激活您的.htaccess。

您的配置文件应如下所示:

<VirtualHost *:80>
        ServerName my.server.name
        DocumentRoot /path/to/your/website/root

        <Directory /path/to/your/website/root >
                DirectoryIndex index.php
                AllowOverride All  <!--Here-->
        </Directory>

</VirtualHost>

你的.htaccess就像:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]