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 を使用していますが、orスラッシュに含める必要があります
or
たとえば domain.com/page/12/a/ と domain.com/page/12/aが機能するように
domain.com/page/12/a/
domain.com/page/12/a
私が試したこと:
RewriteRule ^page/([^/]*)/([^/]*)(/?)([^/]*) index.php?do=atoz&category=$1&letter=$2&type=$3 [L]
あなたの場合、ゼロまたは1?の単純な量指定子が機能するはずです。
?
^page/([^/]*)/([^/]*)(?:/([^/]*))? ## #
編集:オプションとして定量化できるように、一致しないグループを探すこともできます。で始まり?:ます。
?: