如何制作两个不同页面的漂亮网址

时间:2014-01-29 11:12:52

标签: .htaccess mod-rewrite

我在同一目录中有两个页面,如:

www.example.com/index.php?page=about
www.example.com/page.php?var=abc

我希望它像:

www.example.com/about
www.example.com/var/abc

1 个答案:

答案 0 :(得分:0)

这可能就是你要找的东西。

RewriteEngine On
RewriteBase /

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

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