fatpitch
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post ID in permalinksI have WordPress 2.0 installed and
/%post_id%/%postname%/
seems to be working for me. Check out the link to my latest post: https://www.fatpitchfinancials.com/200/new-contributors-corner-access-terms/Forum: Fixing WordPress
In reply to: Changing Permalinks – Need Redirect HelpI found a solution to my problem! Here is what my .htaccess looks like now:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/?$ /?name=$4 [R=301,L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule># END WordPress
I then installed the Permalink Redirect v 0.4.2 plugin and activated it. You can get it at https://fucoder.com/code/permalink-redirect/.
Now both https://www.fatpitchfinancials.com/2006/01/04/new-contributors-corner-access-terms/ and https://www.fatpitchfinancials.com/200/new-contributors-corner-access-terms/ go to the same post. https://www.fatpitchfinancials.com/2006/01/04/new-contributors-corner-access-terms/ is 301 (permanently) redirected to the new link. Scott at FuCoder help me get to this solution.
By the way, I’m running WordPress 2.0.
Forum: Themes and Templates
In reply to: Skidoo Too Theme Anyone?Thanks macmanx for pointing out that template. I did find a Skidoo Too theme for WordPress 1.2 that I had to update. You can find it at:
https://kenklaser.gaiastream.com/2005/02/10/new-template-for-wordpress-122/I discussed the updating and use of the template here:
https://kenklaser.gaiastream.com/2005/05/28/wordpress-1512-from-1511-version-changes/I just wanted to pass this info along in case anyone else came looking for the same thing.