【发布时间】:2013-06-28 07:11:46
【问题描述】:
我的真实网址是:
www.mysite.com/site/index.php
我需要:
www.mysite.com/home.html
我在.htaccess中写:
Options +FollowSymlinks
RewriteEngine On
RewriteRule (.*)/home.html$ /site/index.php
但是转到 404 错误
有什么帮助吗?
Tk.
更新:
域实际上是:www.my-site.com 有什么影响??
更新:
我保存在 www.my-site.com 并为此进行更改:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^home\.html$ site/index.php
</IfModule>
但没有工作。
【问题讨论】:
标签: .htaccess mod-rewrite http-status-code-404