将文件夹/ p​​age.php重定向到文件夹/页面.htaccess

时间:2016-03-30 16:04:29

标签: apache .htaccess web

我正在寻找.htaccess文件的帮助。 我想为domain.net/test domain.net/test.phpdomain.net/folder domain.net/folder/index.php。这可能吗?

1 个答案:

答案 0 :(得分:0)

您可以在站点根目录中使用此代码.htccess:

DirectorySlash On
DirectoryIndex index.php

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+?)/?$ $1.php [L]