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.
我使用 symfony 2 并且已经创建了我的应用程序。我将我的重命名app.php为trainingboard.php. 现在索引操作的 localhost 路由现在是:http://localhost/trainingboard/web/trainingboard.php/. 如何trainingboard.php从我的链接中删除?
app.php
trainingboard.php
http://localhost/trainingboard/web/trainingboard.php/
在您的web/.htaccess文件更改中:
web/.htaccess
RewriteRule ^(.*)$ app.php [QSA,L]
至
RewriteRule ^(.*)$ trainingboard.php [QSA,L]