Ok, I went ahead and changed things so the child theme has the small style.css file that imports styles from the parent theme, and the blog.css in zc has all the styles I've edited to my liking. The styles work, and the links on the blog appear to be working, although I just have one post so far so I'm not sure.
I get a 403 Forbidden when browsing to http://www.adamantbarbell.com/blog-backend/wp-admin .
The image in the blog post is also not displaying. I get a 403 Forbidden on it too. http://www.adamantbarbell.com/blog-b...b_01-Small.jpg
I could try making another test post and upload another image, but I'm unable to do that until I can access wp-admin.
Same htaccess file as last post.
Code:
RewriteEngine On
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/sysop [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors [NC]
# Don't rewrite cPanel directories
RewriteCond %{REQUEST_URI} !/cpanel [NC]
RewriteCond %{REQUEST_URI} !/frontend [NC]
# Don't rewrite blog directory
RewriteCond %{REQUEST_URI} !^/blog.* [NC]
RewriteCond %{REQUEST_URI} !^/blog-backend.* [NC]
# Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php?%{QUERY_STRING} [L]
# Do rewrite blog directory
RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]
Bookmarks