htaccess mod_rewrite about?subpage = mission

时间:2016-02-09 01:47:57

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

我正在尝试使用mod_rewrite清除网址中的$_GET[]信息

目前将此作为我的.htaccess

# BEGIN Rewrite

ErrorDocument 404 /404.php

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]

# END Rewrite

我有和about.php页面有一些子页面和.htaccess文件看起来像

http://domain.com/about

查看子页面#34;任务"它看起来像

http://domain.com/about?subpage=mission 

清理此网址的最佳方法是什么?我吮吸.htaccess的东西。

1 个答案:

答案 0 :(得分:1)

修改

编辑以显示通用规则:

div