CodeIgniter url_suffix问题

时间:2015-10-13 18:06:06

标签: php codeigniter

我正在使用CodeIgniter项目版本2.5。我在config.php中添加了$config['url_suffix'] = '.asp';的网址后缀。当我转到https://localhost:81/project/sample时,它工作正常,但如果我转到https://localhost:81/project/sample.asp则返回The requested resource /project/sample.asp was not found on this server. 这里有什么不对。谢谢。

1 个答案:

答案 0 :(得分:1)

在config.php中,您可以添加url_suffix

中的任何一个
$config['url_suffix'] = '.asp';
$config['url_suffix'] = '.html';
$config['url_suffix'] = '.php';

使用它时可以正常工作。

仍然失败

转到 - > routes.php

$route['project/sample'] = 'project/sample.asp';