子文件夹使用htaccess

时间:2011-01-14 03:07:25

标签: php url .htaccess url-rewriting subdirectory

我想使用这样的东西:

  

http://localhost/test/dummy

而不是:

  

http://localhost/test/profile.php?id=dummy

我知道可以在.htaccess中使用URL Rewrite来完成,但我不知道它是如何工作的,所以我无法让它工作!

我可以请任何人帮助我吗?

1 个答案:

答案 0 :(得分:2)

你的.htaccess文件中的

RewriteEngine on
RewriteBase /test
RewriteCond %{REQUEST_FILENAME} ! -f
RewriteCond %{REQUEST_FILENAME} ! -d
RewriteRule (.*) profile.php?id=$1

还请阅读:http://httpd.apache.org/docs/current/rewrite/rewrite_guide.html