如何创建.htaccess文件,将短链接重定向到html文件?

时间:2014-01-13 10:33:40

标签: html apache .htaccess mod-rewrite short

如何创建将短链接重定向到html文件的.htaccess文件? 例如

    RewriteEngine On
    RewriteRule ^/start$ http://www.%{HTTP_HOST}/index.html [L]

以上规则为我提供了404 error。我在主文件夹中有index.html

1 个答案:

答案 0 :(得分:1)

那是因为领先的斜线。试试这个:

RewriteEngine On
RewriteRule ^start/?$ /index.html [L]
每个目录指令

.htaccess,Apache从RewriteRule URI模式中剥离当前目录路径(从而导致斜杠)。