重定向 seo-friendly 个 URL (htaccess)
Redirect seo-friendly URLs (htaccess)
我有一个生成 seo-friendly 个 URL 的脚本,例如:
mydomain.com/song_here-is-the-song-title_3bhbex.html
or
mydomain.com/song_this-is-one-more-song_4mb6mb.html
所以它是这样生成的方案:
song_TITLE-OF-SONG_RANDOMID.html
如何让这个 random-ID 通过 htaccess 转发它?
现在我有
RewriteRule ^song_([0-9]+)\.html$ /song-text.php?id= [L]
我需要更改此规则,因为现在我也有歌曲标题作为 slug,ID 现在也是字母(不仅仅是数字)。
我必须如何更改我的 htaccess?
谢谢!
这会起作用。
RewriteRule ^song_([a-zA-Z0-9_]+).html$ /song-text.php?id=$1
我有一个生成 seo-friendly 个 URL 的脚本,例如:
mydomain.com/song_here-is-the-song-title_3bhbex.html
or
mydomain.com/song_this-is-one-more-song_4mb6mb.html
所以它是这样生成的方案: song_TITLE-OF-SONG_RANDOMID.html
如何让这个 random-ID 通过 htaccess 转发它? 现在我有
RewriteRule ^song_([0-9]+)\.html$ /song-text.php?id= [L]
我需要更改此规则,因为现在我也有歌曲标题作为 slug,ID 现在也是字母(不仅仅是数字)。
我必须如何更改我的 htaccess?
谢谢!
这会起作用。
RewriteRule ^song_([a-zA-Z0-9_]+).html$ /song-text.php?id=$1