.htaccess GET查询字符串不起作用

时间:2017-04-26 00:15:07

标签: .htaccess mod-rewrite

我尝试从

重定向网址
#comment

http://localhost/manual/$

我的文件.htaccess是

http://localhost/manual/index.php?type=post&post=$

但也没有工作错误,帮助,抱歉,如果重复,因为我仍然不明白创建htaccess。

1 个答案:

答案 0 :(得分:0)

您可以在 /manual/.htaccess 中使用以下规则:

RewriteEngine on

RewriteBase /manual/
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.+)$ index.php?type=post&post=$1 [L]
相关问题