我将我的 wordpress 网站移到了新的服务器上——复制/粘贴内容。
现在服务器上有一个结构:public_html/myinstall
在“myinstall”中有wordpress。
无论如何,我无法开始工作,访问根域会显示 wordpress 内容。
我试过(除其他外)这个:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/myinstall/(.*)$
RewriteRule ^.*$ - [L]
</IfModule>
我还尝试从以前的服务器复制/粘贴 htaccess,但不起作用。
我设法修复它,我在子目录中打错了:/抱歉浪费你的时间
RewriteEngine on
RewriteCond %{HTTP_HOST} ^myinstall$ [NC,OR]
RewriteCond %{HTTP_HOST} ^myinstall$
RewriteCond %{REQUEST_URI} !myinstall/
RewriteRule (.*) /myinstall/$1 [L]
# 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
这个htaccess的结构可以吗?