由于缺乏知识,htaccess无法正常工作

时间:2013-07-21 18:45:34

标签: .htaccess

所以我想把三个变量(用斜杠分隔)发送到我的index.php,但我不能让它工作,我是htaccess的韭菜。

我的基本网址是localhost:8888 / smbo /

我有这个代码不起作用:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /smbo/

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([A-Za-z0-9_-]+)/([A-Za-z0-9_-]+)/([A-Za-z0-9_-]+)$ index.php?id=$1&idTwo=$2&idThree=$3
</IfModule>

谁能帮帮我?

1 个答案:

答案 0 :(得分:0)

试试这段代码:

RewriteEngine On
RewriteBase /smbo/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/([^/]+)$ /index.php?id=$1&idTwo=$2&idThree=$3