Mod重写错误
Mod rewrite error
我在重写 URL 时遇到问题。我已经尝试了 mod 从 Google 重写生成器站点的最佳结果,但其中 none 已经解决了我的问题。
我目前的url是:
http://localhost/detail.php?uri=short-link&id=12
我想做到:
http://localhost/detial/short-link-12
我当前的 .htaccess
RewriteEngine On
RewriteRule ^detail/([^-]*)-([^-]*)$ detail.php?uri=&id= [L]
感谢@MarkShevchenko 为我指明了正确的方向。
解决方案:
RewriteRule ^detail\/(.*)-(\d+)$ detail.php?uri=&id= [L]
我在重写 URL 时遇到问题。我已经尝试了 mod 从 Google 重写生成器站点的最佳结果,但其中 none 已经解决了我的问题。
我目前的url是:
http://localhost/detail.php?uri=short-link&id=12
我想做到:
http://localhost/detial/short-link-12
我当前的 .htaccess
RewriteEngine On
RewriteRule ^detail/([^-]*)-([^-]*)$ detail.php?uri=&id= [L]
感谢@MarkShevchenko 为我指明了正确的方向。
解决方案:
RewriteRule ^detail\/(.*)-(\d+)$ detail.php?uri=&id= [L]