将单词列表重写为 index.php

Rewrite list of words to index.php

我需要将几个网址重写到同一页面。有没有一种简单的方法可以将以下网址重写为 index.php:

www.test.com/miami.html
www.test.com/chicago.html
www.test.com/boston.html

并将它们重写为

www.test.com/index.php

谢谢

假设这是在您的 .htaccess 中进行的,如果您想要外部重写(即更改浏览器 URL):

RewriteEngine On
RewriteBase /
RewriteRule ^(miami|chicago|boston)\.html$ index.php [R,NC,L]

如果您想要内部重写:

RewriteEngine On
RewriteRule ^(miami|chicago|boston)\.html$ index.php [NC,L]

假设您在主配置中启用了重写模块:

LoadModule rewrite_module modules/mod_rewrite.so