문제

i install the Roots Theme and then convert my installation to multisite... so that wordpress add some code into the previous .htaccess with root settings.

My .htaccess now looks like this and i'm becoming something redirection errors

Is there a conflict into my .htaccess?

##### Multisite Htaccess #####
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]

# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]

##### Multisite Htaccess end ####


# BEGIN WordPress
<IfModule mod_rewrite.c>
 RewriteEngine On   
 RewriteBase /
 RewriteRule ^index\.php$ - [L]
 RewriteRule ^css/(.*) /wp-content/themes/roots/css/$1 [QSA,L]
 RewriteRule ^js/(.*) /wp-content/themes/roots/js/$1 [QSA,L]
 RewriteRule ^img/(.*) /wp-content/themes/roots/img/$1 [QSA,L]
 RewriteRule ^plugins/(.*) /wp-content/plugins/$1 [QSA,L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule . /index.php [L]
</IfModule>

# END WordPress

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top