0

我昨天发布了关于从 codeigniter 路径中删除索引点 php 的问题,但问题没有解决......所以任何人都可以加入团队查看器并解决我的问题......?期待中的感谢

我在根文件夹中的 .htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
4

1 回答 1

2

您必须将 .htaccess 文件移动到 index.php 所在的目录,如果存在,则将其从应用程序目录中删除。

然后将以下代码粘贴到 .htaccess 文件中。

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

我假设您已经执行了其他步骤,包括在 WAMP 和 config.php 中打开重写引擎

$config['index_page'] = 'index.php';

$config['index_page'] = '';

还设置

$config['uri_protocol'] = 'REQUEST_URI';

我希望它有所帮助。

于 2017-04-04T06:40:57.727 回答