1
我該如何着手重新指導父目錄而不是子級?看到我下面的具體問題。所有和任何幫助表示讚賞!301重定向 - 重定向父級,但不是子級
家長 -
redirect 301 /community/whats-happening http://www.stapletondenver.com/whats-happening/
- 重定向父目錄
兒童 -
redirect 301 /community/whats-happening/celebrating-halloween-stapleton http://www.stapletondenver.com/whats-happening/celebrating-halloween-in-stapleton/
我已經試過的其他選項沒有成功了一把。見下:
RewriteRule ^community/whats-happening/. /whats-happening/ [R=301,L]
RewriteRule ^community/whats-happening/(.*)$ /whats-happening/$1 [R=301,NC,L]
RewriteRule ^/?community/whats-happening/?$ http://www.stapletondenver.com/whats-happening/ [R=301]
RewriteRule ^community/whats-happening/(.*) http://stapletondenver.com/whats-happening/$1 [R=301,L]
RewriteRule ^community/whats-happening/(.*)/(.*)/? http://stapletondenver.com/whats-happening/$1/ [R=301,L]
非常感謝您的詳細解釋,即偉大工程!重定向總是讓我有所有的變化。在這裏學到了很多,再次感謝! – user2105735