Mod_rewrite使用虚拟文件夹

时间:2014-01-28 10:44:30

标签: regex apache .htaccess mod-rewrite

我和.htaccess一起捣乱,不能想出来

我有这个链接:index.php?metoda=blog_detale&id=1

我希望可以通过以下方式访问whis链接:/ wiadomosci / [post-of-a-post] - [id]

和 [post-of-a-post]是([a-zA-Z0-9 _-] +) [id]是([0-9] +)

wiadomosci是目录树中不存在的虚拟文件夹

你能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On
RewriteBase /

RewriteRule ^wiadomosci/([\w-]+)-([0-9]+)/?$ index.php?metoda=$1&id=$2 [L,NC,QSA]