Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个在.htaccess文件中,
.htaccess
RewriteRule ^(.+)$ index.php?url=$1
然后如果在浏览器中写入这个url site.com/asd////bla,然后在index.php打印$_GET['url']中,结果是:asd/bla。
site.com/asd////bla
index.php
$_GET['url']
asd/bla
问题:其他斜线在哪里?为什么不打印它们?