我正在使用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.
这里有什么不对。谢谢。
答案 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';