1
我想重定向這個請指導我
到
http://example.com/babycare/article/category/10
ID應該deynamicly改變即ID可以b 10,12,或23等
塊引用上的.htaccess
到
http://example.com/babycare/article/category/10
ID應該deynamicly改變即ID可以b 10,12,或23等
塊引用上的.htaccess
嘗試使用:
RewriteRule ^babycare/article/category/([0-9]+)$ babycare/general_help/category.php?id=$1
嘗試這一個,你需要改變它的一部分,根據你的類別
RewriteEngine On
RewriteRule ^category/(.+)/(.+)$ category.php?$1=$2 [NC,L]