Support » Networking WordPress » How to do Multisite Network Administration without .htaccess

  • tangzeyuan

    (@tangzeyuan)


    My hosting does not support .htaccess, but there is a app.conf file.I have set up a network already, basic data can be read from database. But url is wrong, js/css can’t be read.
    How can I transfer these settings from .htaccess to .conf

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ wp/$1 [L]
    RewriteRule . index.php [L]

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘How to do Multisite Network Administration without .htaccess’ is closed to new replies.