.htaccess 将不存在的目录名重写为文件

.htaccess 将不存在的目录名重写为文件,.htaccess,.htaccess,如何将不存在的目录名重写为文件 domain.php/press 到 domain.php/news/index.php要将domain.com/press重写为domain.com/news/index.php您可以在.htaccess或server.config文件中使用以下重写命令 RewriteEngine On RewriteRule ^/?press/?$ /news/index.php [L]

如何将不存在的目录名重写为文件

domain.php/press


domain.php/news/index.php

要将
domain.com/press
重写为
domain.com/news/index.php
您可以在
.htaccess
server.config
文件中使用以下重写命令

 RewriteEngine On
 RewriteRule ^/?press/?$ /news/index.php [L]