Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter SavageSites

    (@savagesites)

    Correction, sorry. WordPress’ .htaccess instructions are what broke my site, and can’t delete this review. Changing my .htaccess file to this solved the problem:

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [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).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    You can still edit the review and update the rating. Please do that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Destroyed Site’ is closed to new replies.