我尝试从
重定向网址#comment
到
http://localhost/manual/$
我的文件.htaccess是
http://localhost/manual/index.php?type=post&post=$
但也没有工作错误,帮助,抱歉,如果重复,因为我仍然不明白创建htaccess。
答案 0 :(得分:0)
您可以在 /manual/.htaccess 中使用以下规则:
RewriteEngine on
RewriteBase /manual/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?type=post&post=$1 [L]