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.
私はsymfony2を使用し、すでにアプリケーションを作成しています。名前をに変更app.phpしましたtrainingboard.php。これで、インデックスアクションのローカルホストルートは次のようになり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]