我的本地站点有项目文件夹http://127.0.0.1/myproject/index.php
。我希望能够映射其 URL,因此如果有人输入http://127.0.0.1/myproject/service
,它应该显示相同的内容或执行与 index.php 相同的功能。
我在不同的站点上尝试了一些示例,但无法完成。
到目前为止我尝试的是:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)\myproject\service$ $index.php