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.
在我的项目中,我想要一个正常的标准获取 URL,例如www.myproject.com?search=asd.但在 symfony2 问号(“?”)中给出错误显示 URL 未找到(404 错误)。
www.myproject.com?search=asd
我能够访问www.myproject.com/search=asd. 配置文件中是否有任何特定设置,以便 URL 中允许使用问号(“?”)?并且在我的项目中,我正在使用注释,并且我有很多这样的 URL,需要 URL 中的问号(“?”)。所以如果可能的话,我需要一般设置。
www.myproject.com/search=asd
Symfony 不会阻止您在路径中使用问号。
你确定你不需要斜线www.myproject.com?search=asd让它看起来像www.myproject.com/?search=asd吗?如果您仍然获得404状态,则根路径没有路由/。
www.myproject.com/?search=asd
404
/