作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
<分区>
我正在使用下面的 htaccess 从我在 Codeigniter 中的 url 中删除 index.php。
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
问题是用户仍然可以使用下面的代码来访问该方法:
http://example.com/index.php/controller/method
如果他们添加了 index.php,我如何重定向它们到没有 index.php 的 url 或将它们发送到错误页面?
我是一名优秀的程序员,十分优秀!