sheldon54
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Consulting] Front page not showing homepage featured contentI toggled the Enable Pre-Made Homepage and it showed up.
Forum: Fixing WordPress
In reply to: Can no longer log into wordpressYou can also access your database and see if your url is correct.
Forum: Fixing WordPress
In reply to: Site not loading, error 404found issue
Forum: Fixing WordPress
In reply to: Site not loading, error 404Htaccess file
#
RewriteEngine onRewriteOptions inherit
RewriteCond %{HTTP_HOST} ^pyains\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.pyains\.com$
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$
RewriteCond %{REQUEST_URI} !^/\.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^/?$ “http\:\/\/pyainsurancegroup\.com\/” [R=301,L]
# Use PHPstable as default
AddHandler application/x-httpd-php-stable .php
<IfModule mod_suphp.c>
suPHP_ConfigPath /opt/phpstable/lib
</IfModule>
#
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^WP/index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /WP/index.php [L]
</IfModule>
# End WordPress- This reply was modified 7 years, 7 months ago by sheldon54.
Forum: Fixing WordPress
In reply to: Site not loading, error 404htaccess
- This reply was modified 7 years, 7 months ago by sheldon54.