我正在尝试使用Codeigniter OpenID库,一切正常,CI的默认配置没有.htaccess
.
当我index.php
通过更改删除时,当我尝试验证我的openid时config.php
,.htaccess
我得到404 Page Not Found(http://ci.dlsb.eu/test/)
谁能告诉我哪里错了?
config.php文件
$config['index_page'] = "";
Run Code Online (Sandbox Code Playgroud)
的.htaccess
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
Run Code Online (Sandbox Code Playgroud)