我重命名index.php
到home.php
然后放闪光灯进去index.php
. 在flash中,我制作了一个效果,播放5分钟后,它重定向到home.php
.
我把这个代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /home.php [L]
</IfModule>
在我的
.htaccess
文件
我打开永久链接example.com/sample-post
所有的帖子链接都可以。但是example.com/home.php
不正常。如果我将permalinks设置为example.com/?p=123
所有链接都不正常。这个example.com/home.php
没问题。主页内容来自themes/mytheme/index.php
.
如何纠正example.com/home.php
?
我想要的:
我想在我的网站上添加一个flash,即在访问我的网站时,先显示flash,几分钟后,再重定向到主页。在flash上,有一个链接“进入网站”。
我的思考方式如下,在flash中我添加了代码
停止();getURL(\'example.com/index.php\',\'\\u self\')。然后创建一个名为index的文件。php。将调用flash代码放入其中。然后重命名默认索引。php名称改为“fhp.php”。
但这不是工作。如何纠正?