如何用htaccess修改php网站的网址

时间:2012-03-14 13:40:15

标签: .htaccess

我正在使用一些网址 - 的 www.mydomain.com/index.php?page=about_us

我希望它看起来像 - 的 www.mydomain.com/about_us

www.mydomain.com/page/about_us

如何使用htaccess执行此操作?我将很感激两者的解决方案。

1 个答案:

答案 0 :(得分:1)

通常的方法是这样的:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?page=$1 [L]