URL Rewriting including title

后端 未结 2 999
忘了有多久
忘了有多久 2021-01-07 01:41

Initially i succeed to rewrite the url using id

with the htaccess code:

RewriteRule ^link/([0-9]+)\\.html$ sub_index.php?link_id=$1          


        
2条回答
  •  青春惊慌失措
    2021-01-07 02:29

    Try:

    RewriteRule ^link/([a-zA-Z0-9_- ]+)/([0-9]+)\.html$ sub_index.php?link_id=$2 
    

    However you should use rawurlencode when you output the title, in order for it to work properly on any kind of browser.

提交回复
热议问题