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.
SMF フォーラム システムの古い URL を新しい Xenforo にリダイレクトする必要があります。古い URL は次のとおりです。
http://www.example.com/forum/index.php?topic=XXXX.0
新しい URL は次のとおりです。
http://www.example.com/forum/threads/XXXX/
本当の htaccess コードは何ですか?
これは機能するはずですが、スレッドが SMF と XF の両方で同じ ID を持っていることを前提としています。Xenforo のリダイレクトの前に配置する必要があります。
RewriteCond %{QUERY_STRING} ^topic=(\d+).*$ RewriteRule ^index\.php$ http://www.example.com/forum/threads/%1/? [R=302,L]