【发布时间】:2014-11-05 11:02:25
【问题描述】:
我对 .htaccess 重写非常陌生,我正在尝试创建规则来动态重写 URL。
例如,假设用户输入以下 URL:
这是我的基本网址 -
http://lptpl.info/oCatalog/
现在的 URL 可能是这样的
http://lptpl.info/oCatalog/category OR
http://lptpl.info/oCatalog/category/abc OR
http://lptpl.info/oCatalog/anything/xyz OR
http://lptpl.info/oCatalog/anythingNewAgainHere/xyz OR
http://lptpl.info/oCatalog/anything/anything OR
http://lptpl.info/oCatalog/anything/anything/anything...
所以我想弄成这样
http://lptpl.info/oCatalog/category.html
http://lptpl.info/oCatalog/category/abc.html
http://lptpl.info/oCatalog/anything/xyz.html
http://lptpl.info/oCatalog/anythingNewAgainHere/xyz.html
http://lptpl.info/oCatalog/anything/anything.html
http://lptpl.info/oCatalog/anything/anything/anything.html ...
【问题讨论】:
标签: .htaccess url redirect dynamic url-rewriting