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.
joomlaの「リダイレクトマネージャー」または.htaccessファイルへの新しいリダイレクトルールを作成するにはどうすればよいですか。これにより、ゲストを「something / item/13269248」から「somethingelse/item / 13269248」などにリダイレクトできますが、IDは任意ですか。
htaccess
Redirect something/item/13269248 somethingelse/item/13269248
問題が発生した場合はお知らせください
私は答えを見つけました、そしてあなたはこのようにそれをすることができます:
RewriteRule ^something/item/(.*) /somethingelse/item/$1 [R=301,L,QSA]