URL将index.php?domain = domain.com重写为/domain.com

时间:2018-11-20 03:08:34

标签: .htaccess

我有.htaccess这个

Options +FollowSymlinks 
RewriteEngine On
RewriteRule ^([^/.]+)$ index.php?domain=$1 

如果显示url domain.com/goo,但没有找到url domain.com/goo.gl,怎么了?

1 个答案:

答案 0 :(得分:0)

我无法理解您要删除的当前规则。即使规则不正确,也可以在匹配的字符串中尝试以下内容,我们完全匹配完全不匹配的字符串。

Options +FollowSymlinks 
RewriteEngine On
RewriteRule ^(.+)$ index.php?domain=$1