RewriteRule htaccess友好的网址

时间:2014-03-13 12:58:49

标签: apache .htaccess mod-rewrite friendly-url

我试图制作友好的网址。 我的网站网址是:

  

domain.pl/index.php?str=prod_big&idk=869&kat =

我的.htaccess代码是:

RewriteCond %{HTTP_HOST} !^domain\.pl$
RewriteRule ^(.*) http://domain.pl/$1 [R=301,L]

RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /index.php?str=$1&idk=$2&kat= [L]

但访问后:

  

http://domain.pl/prod_big/869.html

没有任何反应。我该怎么办?

0 个答案:

没有答案