从PHP文件制作虚拟目录的.htaccess行是什么?
www.domain.de/file.php
应该转到www.domain.de/file/
答案 0 :(得分:1)
多数民众赞成:
DirectoryIndex index.php
RewriteEngine on
RewriteRule ^file/ file.php [L]
Options -Indexes
答案 1 :(得分:0)
这样的事情:
RewriteEngine On
RewriteRule ^(.+)\.php$ /$1/ [L]
这将使您输入http://www.domain.de/something/,网络服务器会将URI重写为/something.php。您只需确保以/something/