Configuring WordPress .htaccess to view subfolders

后端 未结 2 2057
臣服心动
臣服心动 2020-12-01 13:02

I have a WordPress installation with an .htaccess file that looks like this:

# BEGIN WordPress

RewriteEngine On
R         


        
2条回答
  •  無奈伤痛
    2020-12-01 13:33

    For future reference, you may want to try this:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /blog2/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog2/index.php [L]
    
    # END WordPress
    

提交回复
热议问题