的.htaccess - 重定向一个PHP文件到一个虚拟目录
问题描述:
什么的.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