.htaccess RewriteRule:在我的域中添加短划线( - )

时间:2014-03-10 16:57:09

标签: .htaccess

我想修改我的网址:

domain/content.php?page=x

要:

domain/x-y

我将此代码放在我的文件.htaccess中:

RewriteRule ^([a-zA-Z0-9\-]+)$ content.php?page=$1 [L]

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

如果您不想要网址的y部分,则无需创建与其匹配的分组:

RewriteRule ^([^-]+)- /content.php?page=$1 [L]