我想从
重写我的网址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 :(得分:0)
查看此在线工具,以创建.htaccess文件:http://www.htaccessredirect.net/
给你:
//301 Redirect Entire Directory
RedirectMatch 301 https://abc.com/category/computers/(.*) https://abc.com/category/computers/
希望这会有所帮助。另外,我可以问你为什么要将所有页面重定向到主目录吗?