我和.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是目录树中不存在的虚拟文件夹
你能帮帮我吗?
答案 0 :(得分:1)
将此代码放入DOCUMENT_ROOT/.htaccess
文件中:
RewriteEngine On
RewriteBase /
RewriteRule ^wiadomosci/([\w-]+)-([0-9]+)/?$ index.php?metoda=$1&id=$2 [L,NC,QSA]