我在我的网站上需要的 URL 中有 3 个变量:page
、x
和action
.
像这样:
/?page=category&x=geografi&action=succes
我写:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} /([a-zA-Z0-9]+)
RewriteRule ^([a-zA-Z0-9]+)$ index.php?page=$1
RewriteCond %{REQUEST_URI} /([a-zA-Z0-9]+)/
RewriteRule ^([a-zA-Z0-9]+)/$ index.php?page=$1
</IfModule>
使用该代码,我得到了正确的页面变量,但我需要另外两个......