标签: regex .htaccess url
我想通过用破折号替换空格和其他符号以及删除撇号来重写URL。我无法做到。这是我的.htaccess。
.htaccess
RewriteEngine On RewriteRule ^videos/([0-9]+)/([a-z\-A-Z]+) post.php?p_id=$1&title=$2 [L]
实施例
结果:example.com/videos/1/why's%20%sis%sare
example.com/videos/1/why's%20%sis%sare
预期:example.com/videos/1/whys-20-is-are
example.com/videos/1/whys-20-is-are