htaccess重写url来清理

时间:2016-01-21 13:16:39

标签: .htaccess mod-rewrite

目前我有这段代码。

RewriteEngine On
RewriteCond %{THE_REQUEST} ^GET\ /l/index\.php\?\S*mp3=\S* [NC]
RewriteCond %{QUERY_STRING} \bmp3=([^\s&]+) [NC]
RewriteRule ^ /%1.html? [R=301,L]

说实话?我可能做错了所以一定要轮流嘲笑我但我只需要在此之前使用重写规则,所以我仍然在学习并且很难在那里工作。

我正试图将我讨厌的网址变成下面显示的网址。

http://dl.example.com/stream/index.php?a=Song+Artist&s=Song+Name&mp3=http://www.example.com/mp3embed-ep0v3t1lvsah.mp3

分解。

http://dl.example.com/stream/index.php?a=&s=&mp3=

看起来像这样看起来干净利落的东西。

http://dl.example.com/ep0v3t1lvsah.html

我非常感谢任何帮助,因为我说我对.htaccess非常陌生,所以在你的回答中尽可能提供信息将是惊人的!

0 个答案:

没有答案