htaccess重定向如何写
程序员文章站
2022-06-06 11:08:31
...
htaccess重定向怎么写?
我想把 /index.php/article/det/id/(任何数字)
重定向到 /index.php/p/(数字)
该怎么写?
------解决方案--------------------
RewriteRule /index.php/p/([0-9]+) /index.php/article/det/id/$1
我想把 /index.php/article/det/id/(任何数字)
重定向到 /index.php/p/(数字)
该怎么写?
------解决方案--------------------
RewriteRule /index.php/p/([0-9]+) /index.php/article/det/id/$1
相关文章
相关视频
下一篇: PHP 传值问题?