我使用Codeigniter为Class-Project创建网站,并希望从URL中删除index.php。
我关注CodeIgniter removing index.php from url。在本地服务器上运行良好。但是,当我使用Tomcat9将文件上传到服务器时,它不起作用。
我发现.htaccess无法与tomcat一起使用?
那么如何从URL中删除index.php?
答案 0 :(得分:0)
您可以删除index.php并设置其他内容,例如问号。
转到
application-> config-> config.php
并设置
$config['index_page'] = '?'
。