我的主要網站顯示(mypage.com/site)以及所有後續網頁包括/網站以及 我如何實現(mypage.com)並且沒有子目錄顯示?主要網站在URL中顯示子目錄
我曾嘗試刪除Wordpress設置中的網站地址URL中的/ site。 但它打破了我的登錄,並禁用我登錄。
我必須做什麼才能刪除我的網站上的/ site子目錄文件夾?
我在我的htaccess文件中做什麼?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /site/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /site/index.php [L]
</IfModule>
# END WordPress
我相信你必須移動WordPress的核心文件 - http://codex.wordpress.org/Moving_WordPress – James
另外我相信你需要在子目錄中使用不同的htaccess進行WP安裝。 http://codex.wordpress.org/htaccess –
謝謝。我發現在我的文字中的https插件正在把我搞砸。一旦被禁用。一切正常。謝謝! –