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.
次のタイプのリダイレクトが必要です。/store/something/namestoreから/store/ namestoreただし、例外が1つあります。/store/namestore/page/2は何にもリダイレクトしないでください。/ store / namestore / page/3は何にもリダイレクトしないでください。等々。
他の誰かが必要とする場合の解決策は次のとおりです。 L]
質問を正しく理解できれば、これが解決策になるはずです。
RewriteEngine on RewriteRule ^/store/([a-zA-Z0-9_\-]+)/([a-zA-Z0-9_\-]+)$ /store/$2/ [R]
また
RewriteEngine on RewriteRule ^/store/([^/]+)/([^/]+)$ /store/$2/ [R]