>  기사  >  백엔드 개발  >  请问一个.htaccess文件解析的有关问题

请问一个.htaccess文件解析的有关问题

WBOY
WBOY원래의
2016-06-13 13:28:13991검색

请教一个.htaccess文件解析的问题

我的显示文件在products上的showdetail.php?id=**

我想把产品显示成以下的规则;
/products/new-products/13.html
/products/outdoor-led/13.html
/products/indoor-led/13.html

.....

写成RewriteRule ^/products/(\w+)\/13.html$ /products/showdetail.php?id=$1
怎么显示找不到文件呢?

------解决方案--------------------
你有一个 \ 这个,去掉试一试。
------解决方案--------------------
/products/indoor-led/13.html
对于
RewriteRule ^/products/(\w+)\/13.html$ /products/showdetail.php?id=$1
不是还有一个加号不在规则中吗?

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.