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 を解析するための htaccess ファイルを作成しようとしています。
/folder/title-of-article/id=6
~に渡される
/page.php?id=6
どうすればいいですか?
記事のタイトルにスラッシュを含めることができないとすると、次のように使用できます。
RewriteEngine On RewriteRule ^folder/[^/]+/id=([0-9]+)$ /page.php?id=$1
これは一致します/folder/<anything not containing slashes>/id=<digits>
/folder/<anything not containing slashes>/id=<digits>