的.htaccess - 重定向一个PHP文件到一个虚拟目录重定向、虚拟目录、文件、htaccess

2023-09-02 09:38:31 作者:一分心动

什么的.htaccess线从PHP文件做一个虚拟目录?

What are the .htaccess lines to make a Virtual Directory from a PHP File?

www.domain.de/file.php 应到 www.domain.de/file /

推荐答案

这就是它:

DirectoryIndex index.php
RewriteEngine on
RewriteRule ^file/ file.php [L]
Options -Indexes