我的真实网址是:
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>
但没有工作。