如何使用别名从 url 中删除文件扩展名

how to use remove file extension from url using alias

我想在我的 Apache 站点配置文件中使用 Alias 删除我的一些文件的文件扩展名,但我无法让它工作。

这是一个例子:

Alias "/alias" "/the/real/path"

我也试过这个:

Alias /alias /the/real/path

我已经尝试了完整路径和根目录的相对路径。

有人知道如何使用 Alias 来执行此操作吗?

一定要在目录配置中设置AllowOverride All

示例:

<Directory /var/www/>
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>