标签: .htaccess
如何将不存在的目录名重写为文件。
domain.php /按
到
domain.php /消息/ index.php的
答案 0 :(得分:1)
要将domain.com/press重写为domain.com/news/index.php,您可以在.htaccess或server.config文件中使用以下重写命令。
domain.com/press
domain.com/news/index.php
.htaccess
server.config
RewriteEngine On RewriteRule ^/?press/?$ /news/index.php [L]