我创建了一个 php 网站。在这里,我在 .htaccess 文件中实现了干净的 URL。我需要显示 mu 链接
mydomain/index.php
到mydomain/index
所以我用过
RewriteRule index index.php
但是我有很多文件。那么我将如何为整个页面编写一个通用规则呢?
例如
RewriteRule hotels hotels.php
谢谢
我创建了一个 php 网站。在这里,我在 .htaccess 文件中实现了干净的 URL。我需要显示 mu 链接
mydomain/index.php
到mydomain/index
所以我用过
RewriteRule index index.php
但是我有很多文件。那么我将如何为整个页面编写一个通用规则呢?
例如
RewriteRule hotels hotels.php
谢谢
尝试这个:
#Setup
Options +FollowSymLinks
RewriteEngine On
#Remove trailing slashes
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ /$1 [R=permanent,QSA]
#Your thing
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+)$ $1.php [L,QSA]