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でURLを書き直す必要があります。
(Actual url) Before: yyy.com/folder/index.php?lang=en (Their url) After: yyy.com/folder/en/index.php Before: yyy.com/folder/submit.php?lang=da After: yyy.com/folder/da/submit.php
どうすればよいですか?
これをドキュメントルートのhtaccessファイルに追加してみてください。
RewriteEngine On RewriteRule ^/?folder/([a-z]{2})/index\.php$ /folder/index.php?lang=$1 [L,QSA]