我有一個查詢,我希望URL重寫嚮導可以幫助我,因爲這是一個超越我。重定向4個不同的URL到一個URL
我有以下網址:
http://www.domain.com/region/news/123456-article-name-goes-here.html http://www.domain.com/region/news/123456-article-name-goes-here.html?get_var=1234 http://www.domain.com/mobile/region/news/123456-article-name-goes-here.html http://www.domain.com/mobile/region/news/123456-article-name-goes-here.html?get_var=1234
我需要所有這些變化的重定向到URL的格式如下:
http://www.domain.com/region/article-name-goes-here/
所以我需要刪除'mobile /',刪除' news /',刪除'123456-',刪除.html,刪除任何GET變量,然後添加尾部斜槓。
要做到這一點,最好的方法是什麼?
非常感謝!
@PanamaJack的原始querystring這確實是可能的。不過,我認爲這是不好的風格。它使事情變得更加複雜和混亂,而沒有爲特定的應用程序提供好處。如果你實施這些規則,那麼你知道你在哪裏放置它們。 – arkascha