寻找有关使用PHP和/或htaccess重写URL的一些指导

时间:2011-06-06 13:49:14

标签: php .htaccess mod-rewrite

我希望使用PHP和/或.htaccess重写网址,以便当用户访问http://mysite.com/profile时他们正在实际访问http://mysite.com/index.php?page=profile

我很困惑如何做到这一点。这种做法是个好主意吗?

1 个答案:

答案 0 :(得分:1)

如果激活mod重写,则应该在.htaccess中使用:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?page=$1