我使用wordpress,它会在root上运行index.php
。如何使用htaccess重写来创建我的文件夹之一,使用script
来代替index.php
运行它?重定向是其中一种方式,但这不是我想要的,因为它无法保留URL。我希望example.com在不更改URL的情况下提供example.com/script的内容。
答案 0 :(得分:0)
您可以使用DirectoryIndex
DirectoryIndex script
这将在内部将您的主页映射到/ script
另一个解决方案是mod-rewrite
在RewriteEngine指令之后,将以下规则置于现有规则之上:
RewriteRule ^$ /script [L]