ryanmcdonnell
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Everything else WordPress
In reply to: Does Word Press Support php?There are a couple plugins for this.
Check out:
http://www.hongkiat.com/blog/2007/02/18/execute-php-in-wordpress-post-page-and-widget-sidebar/or google “wordpress php exec”
Forum: Fixing WordPress
In reply to: Site shows up blank, usual solutions don’t workHave you tried either of the following?
- Clear out wp-content/cache (if it exists)
- Disable all your plugins by temporarily deleting/renaming all the files in wp-content/plugins
Forum: Fixing WordPress
In reply to: redirect from index.php to domain.com/This makes total sense… it’s technically the same page but you can reach it from two unique URLs. That’s not so good for search engine rankings as it looks like duplicate content. If you do a 301 redirect from one to the other then you can consolidate your ranking and authority for that page.
This worked for me:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{THE_REQUEST} ^[^/]*/index\.php [NC] RewriteRule . / [R=301,L] </IfModule>But this before the WordPress rules in .htaccess
Forum: Fixing WordPress
In reply to: redirect from index.php to domain.com/This worked for me:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{THE_REQUEST} ^[^/]*/index\.php [NC] RewriteRule . / [R=301,L] </IfModule>Put this before the WordPress rules in .htaccess
Viewing 4 replies - 1 through 4 (of 4 total)