如何删除 Azure PHP Web App 上的 .php 扩展名?
在 htaccess 文件中使用以下内容,不起作用
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
想法?
如何删除 Azure PHP Web App 上的 .php 扩展名?
在 htaccess 文件中使用以下内容,不起作用
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
想法?
Azure Web Apps 使用 IIS 来托管您的应用程序。Apache 的 .htaccess 系统的最佳等价物实际上是使用 web.config 文件来处理 IIS 中的 URL 重写。
例如,您可以将以下 web.config 文件放入您的 Web 应用程序的根文件夹以隐藏 .php 扩展名。
参考:
https://www.saotn.org/iis-url-rewrite-hide-php-extension。
<?xml version="1.0" encoding="UTF-8" ?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="hide .php extension" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="{R:1}.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
希望能帮助到你。