dongyong8071 2019-04-24 01:40
浏览 46
已采纳

如何查找角色的最后一个实例

I'm building this real estate script using PHP and I want the listing page url's to be like /listing/this-is-the-title-436. This url is generated in PHP and the last part of the url, after the last instance of ' - ' is the listing id. But I cannot find a way to find the last instance of a dash and use the rest as a variable in .htaccess.

Note that the title can have any amount of spaces therefore any amount of dashes but the listing id will always be at the end, after the last dash.

To summarize, I want urls like /listing/this-is-the-title-436 to redirect to /assets/inc/listing.php?listing=436 with .htaccess.

Any help would be appreciated, thanks!

  • 写回答

1条回答 默认 最新

  • douyalin0847 2019-04-24 01:48
    关注

    The easiest way is to test a numerical value at the end:

    RewriteEngine on
    RewriteRule ^listing/.+-(\d+)$ /assets/inc/listing.php?listing=$1 [L,QSA]
    

    But if you're not just using numeric values, you can also test for the absence of - in the last part:

    RewriteRule ^listing/.+?-([^-]+)$ /assets/inc/listing.php?listing=$1 [L,QSA]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部