2014-02-13 28 views
0

我想從我的查詢是重寫URL

https://abc.com/category/computers/21  (this may be any number) 

重寫我的網址:

https://abc.com/category/computers 

我試圖像下面給出了一些方法,但它不工作

RewriteRule ^category/([^/]*)/$ interna.php?name_of_Category=$1&category_number [NC,L] 

請幫幫我。

感謝

回答

0

退房創建您的.htaccess文件這個在線工具:http://www.htaccessredirect.net/

它給你:

//301 Redirect Entire Directory 
RedirectMatch 301 https://abc.com/category/computers/(.*) https://abc.com/category/computers/ 

希望這有助於。另外,我可以問你爲什麼要重新指引所有頁面到主目錄嗎?

+0

感謝它幫助。 – user3305962

+0

請將此標記爲已回答:) – MarkP