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

时间:2018-01-17 21:14:21

标签: .htaccess

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

domain.php /按

domain.php /消息/ index.php的

1 个答案:

答案 0 :(得分:1)

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

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