-1
所以我改變了我的網址謝靈運,我想重定向找不出根本的.htaccess重定向
http://www.mysite.com/search-example/1.html
其中example =搜索詞(可以是任何東西)和1等於頁碼,到
http://www.mysite.com/search-example-1.html?
它需要是動態的,具體取決於他們的搜索詞和頁碼。
所以我改變了我的網址謝靈運,我想重定向找不出根本的.htaccess重定向
http://www.mysite.com/search-example/1.html
其中example =搜索詞(可以是任何東西)和1等於頁碼,到
http://www.mysite.com/search-example-1.html?
它需要是動態的,具體取決於他們的搜索詞和頁碼。
不能在此刻測試,但也許這將這樣的伎倆:
Redirect 301 /search-(.*)/(.*).html http://www.mysite.com/search-$1-$2.html
你想要:'RedirectMatch 301 /search-(.*)/(.*).html http:// www.mysite.com/search- $ 1- $ 2.html' –
http://www.mysite.com/search-example/1.html到http://www.mysite .com/search-example-1.html – tytyguy