标签: php .htaccess redirect
我想重定向此网址:
www.example.com/index.php?cn=us
到
www.example.com/us/
有可能在htaccess吗?怎么样?
答案 0 :(得分:3)
试试这个:
RewriteEngine On RewriteRule ^([a-z]{2})/?$ index.php?cn=$1
这表明这适用于任何两个字母的国家/地区代码
的index.php
<?php echo $_GET['cn']; ?>