【发布时间】:2011-12-26 15:06:03
【问题描述】:
从 PHP 文件创建虚拟目录的 .htaccess 行是什么?
www.domain.de/file.php 应该转到www.domain.de/file/
【问题讨论】:
标签: php .htaccess directory virtual
从 PHP 文件创建虚拟目录的 .htaccess 行是什么?
www.domain.de/file.php 应该转到www.domain.de/file/
【问题讨论】:
标签: php .htaccess directory virtual
就是这样:
DirectoryIndex index.php
RewriteEngine on
RewriteRule ^file/ file.php [L]
Options -Indexes
【讨论】:
类似这样的:
RewriteEngine On
RewriteRule ^(.+)\.php$ /$1/ [L]
这将使如果您输入http://www.domain.de/something/,网络服务器会将URI 重写为/something.php。你只需要确保你的链接是/something/
【讨论】: