Title: gangles's Replies | WordPress.org

---

# gangles

  [  ](https://wordpress.org/support/users/gangles/)

 *   [Profile](https://wordpress.org/support/users/gangles/)
 *   [Topics Started](https://wordpress.org/support/users/gangles/topics/)
 *   [Replies Created](https://wordpress.org/support/users/gangles/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/gangles/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/gangles/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/gangles/engagements/)
 *   [Favorites](https://wordpress.org/support/users/gangles/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upgrade to 2.8.4 breaks get_permalink()?](https://wordpress.org/support/topic/upgrade-to-284-breaks-get_permalink/)
 *  Thread Starter [gangles](https://wordpress.org/support/users/gangles/)
 * (@gangles)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/upgrade-to-284-breaks-get_permalink/#post-1225647)
 * Does anyone else have any ideas why get_permalink() might be returning 403? Any
   help would be much appreciated.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upgrade to 2.8.4 breaks get_permalink()?](https://wordpress.org/support/topic/upgrade-to-284-breaks-get_permalink/)
 *  Thread Starter [gangles](https://wordpress.org/support/users/gangles/)
 * (@gangles)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/upgrade-to-284-breaks-get_permalink/#post-1225464)
 * Hi Shane,
 * My .htaccess file is already as follows:
 *     ```
       # Redirect www to non-www for root domain
       RewriteEngine On
       RewriteCond %{HTTP_HOST} ^www\.gangles\.ca$ [NC]
       RewriteRule ^(.*)$ http://gangles.ca/$1 [R=301,L]
   
       ErrorDocument 404 /index.php?error=404
   
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /index.php [L]
       </IfModule>
       # END WordPress
       ```
   
 * Thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating a Custom “About” Page URL](https://wordpress.org/support/topic/creating-a-custom-about-page-url/)
 *  Thread Starter [gangles](https://wordpress.org/support/users/gangles/)
 * (@gangles)
 * [17 years, 6 months ago](https://wordpress.org/support/topic/creating-a-custom-about-page-url/#post-910021)
 * A quick update, I’ve been having trouble with the custom permalinks plug-in. 
   My new question thread is [here](http://wordpress.org/support/topic/222757).
 * Thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating a Custom “About” Page URL](https://wordpress.org/support/topic/creating-a-custom-about-page-url/)
 *  Thread Starter [gangles](https://wordpress.org/support/users/gangles/)
 * (@gangles)
 * [17 years, 6 months ago](https://wordpress.org/support/topic/creating-a-custom-about-page-url/#post-909892)
 * I’ll give that a shot Mercime, thanks! I’ll mark this topic as resolved for now.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating a Custom “About” Page URL](https://wordpress.org/support/topic/creating-a-custom-about-page-url/)
 *  Thread Starter [gangles](https://wordpress.org/support/users/gangles/)
 * (@gangles)
 * [17 years, 6 months ago](https://wordpress.org/support/topic/creating-a-custom-about-page-url/#post-909877)
 * [@mercime](https://wordpress.org/support/users/mercime/): My understanding is
   that this method will break my existing permalink structure, which I am not interested
   in doing. I only want to change a few pages.
 * I imagine I could create an index.php page within an /about directory, but I’d
   have to hack together a page to put there if I wanted it to be seamless.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Title in Header.php Tweaking](https://wordpress.org/support/topic/title-in-headerphp-tweaking/)
 *  Thread Starter [gangles](https://wordpress.org/support/users/gangles/)
 * (@gangles)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/title-in-headerphp-tweaking/#post-893300)
 * Fixed code (and much cleaner)!
 *     ```
       <?php
          if(is_home()){
            echo "";
          }
          elseif(is_404()){
            echo "404 (Page Not Found) - ";
          }
          elseif(is_search()){
            echo "Search Results for ";
            echo wp_specialchars($s, 1);
            echo " - ";
          }
          else{
           echo wp_title();
           echo " - ";
          }
          echo bloginfo('name');
          ?>
       ```
   
 * I’m not sure if the empty echo is strictly necessary.

Viewing 6 replies - 1 through 6 (of 6 total)