1、用的apahce配置tp5.0的php环境
2、发现input()过来的数据,总是多了一个变量,那就是路由变量,
类似【array(2) { ["/index/index/form_submit_html"]=> string(0) "" ["username"]=> string(6) "sakura" }???????? 多了/index/index/form_submit_html这个参数,,,】
3、解决:把项目根路径下的 .htaccess文件中的 RewriteRule ^(.)$ index.php?/$1 [QSA,PT,L] 改成 RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
原文地址:https://www.cnblogs.com/xuzhengzong/p/11771176.html
时间: 2024-10-10 21:32:04