标签: wordpress .htaccess mod-rewrite url-rewriting friendly-url
我的网站链接www.myweb.com/detail.php。我想问一下,如何像www.myweb.com/2016/05/05/title
www.myweb.com/detail.php
www.myweb.com/2016/05/05/title
目前,配置htaccess如下:
RewriteEngine On RewriteCond $1 !^(detail\.php) RewriteRule ^[0-9]+/[0-9]+/[0-9]+/(.*)$ detail.php?id=$1 [L]
但它不起作用,如何解决这个问题。