我试图在重写后隐藏 URL 的一部分。
下面是我在 .htaccess 中使用的重写规则,当有人尝试访问 abc.com 时,这基本上会执行http://example.com/index.php-someextrainfohere 。我想要实现的是,我想在重写之后隐藏“-someextrainfohere”部分。从我的感觉来看,我无法通过第二个重写规则来做到这一点。知道我该怎么做吗?
RewriteCond %{HTTP_HOST} ^abc.com [NC]
RewriteRule ^(.*)$ http://example.com/index.php-someextrainfohere
谢谢。