标签: .htaccess redirect
我在网站上工作,我想要像
http://example.com/page/*(其中*是页码)指向http://example.com/category/page/*。
http://example.com/page/*
http://example.com/category/page/*
我该怎么做?
谢谢大家。
答案 0 :(得分:0)
将此代码放入DOCUMENT_ROOT/.htaccess文件中:
DOCUMENT_ROOT/.htaccess
RewriteEngine On RewriteBase / RewriteRule ^(pages/[0-9]+)/$ category/$1 [L,NC]