我剛剛在我的服務器(www.albertotry.esy.es)中設置了一個Wordpress,並且通過FTP添加了一個新的站點文件,但是如果我嘗試訪問該站點,則不會請參閱新網站的index.html
,但不要使用Wordpress網站。如何更改defualt網站目錄
我敢肯定有一個與.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」將顯示頁面?