-1

你好我想重写:

example.com/file

例子.com

在 htaccess 中我不想将 example.com/file 重定向到 example 但重写。我会在 htaccess 中输入什么谢谢

4

1 回答 1

1

很简单:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^file$ / [L]
</IfModule>
于 2013-11-10T23:35:37.107 回答