Apache规则不起作用

时间:2013-12-28 15:09:53

标签: php .htaccess

我想创建一个.htaccess规则。

我的链接如下所示:

http://gpuzzles.com/brain-questions/funny-puzzles-and-riddles

可以将其重定向到gpuzzles.com/brain-questions/index.php(我可以将参数设为funny-puzzles-and-riddles

我尝试创建一个新的RewriteRule,但它不起作用:

RewriteRule ^brain-questions/(.+)$ /brain-questions/index.php?var=$1

1 个答案:

答案 0 :(得分:0)

/brain-questions/.htaccess

中试用此代码
RewriteEngine On
RewriteBase /brain-questions/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/?$ index.php?var=$1 [L,QSA]