【发布时间】:2016-05-27 12:36:33
【问题描述】:
我刚刚在我的服务器 (www.albertotry.esy.es) 中设置了一个 Wordpress,并通过 FTP 添加了一个新的站点文件,但如果我尝试访问该站点,我看不到 index.html 的新网站,但默认的 Wordpress 网站。
我很确定.htaccess 文件有问题:
# Do not remove this line or mod_rewrite rules and search engine friendly URLs will stop working
RewriteBase /
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我应该对输入“www.albertotry.esy.es”时显示的页面进行什么更改?
【问题讨论】:
标签: php wordpress .htaccess web