vitorf7
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Different Menu on a specific PageHey guys no worries I have figured it out with the help of another developer.
I basically registered a new Nav Menu and then on my header.php tested to see if it was “my-page” and then use the new menu, otherwise for all the pages it uses the default menu that it had.
Forum: Networking WordPress
In reply to: Redirect Permanent on Blog Specific SitesI have done it just as you ask but unfortunately for some weird reason it does not work. When you enter the URL http://www.domain.com/something and click enter it just goes to http://www.domain.com and not http://something.domain.com/something.
Very weird and I did exactly as you said.
Forum: Networking WordPress
In reply to: Redirect Permanent on Blog Specific SitesHi Ipstenu,
I tried adding that code to the .htaccess file on the root of the WordPress Multi-Site Install but when I go to the site and try to go to http://www.domain.com/something it does not redirect me to http://something.domain.com/something
Here is the actual .htaccess code
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L] #php_value error_reporting 7 #php_flag display_errors On RewriteCond %{HTTP_HOST} ^domain\.com RewriteRule ^something/ http://something.domain.com/something [L,R=301]I even tried making the ^something/ into ^/something just in case but nothing worked. What do you think I may be doing wrong