0

我想知道如何获取请求目录,我们将其称为http://doamin.com/page/并让它解析为类似http://doamin.com/page1.php的页面,但仍显示在 URL 中作为目录。

通过一些研究,我认为这将是 .htaccess 文件中的内容,但我不太确定是什么。

4

1 回答 1

1

将这些指令放在您的 中.htacess,请注意,这些规则还将 /page(不带斜杠)重定向到 /page.php,如果您不希望这样做,只需删除?RewriteCond中的尾随

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} ^/([^\.]+?)/?$
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* %1.php [L]
于 2013-06-15T07:24:38.163 回答