用htaccess重写替换index.php

时间:2016-05-29 12:23:55

标签: wordpress apache .htaccess

我使用wordpress,它会在root上运行index.php。如何使用htaccess重写来创建我的文件夹之一,使用script来代替index.php运行它?重定向是其中一种方式,但这不是我想要的,因为它无法保留URL。我希望example.com在不更改URL的情况下提供example.com/script的内容。

1 个答案:

答案 0 :(得分:0)

您可以使用DirectoryIndex

DirectoryIndex script

这将在内部将您的主页映射到/ script

另一个解决方案是mod-rewrite

在RewriteEngine指令之后,将以下规则置于现有规则之上:

RewriteRule ^$ /script [L]