Bonsai Coder
Active member
I have been working on this problem with my site for over a day now, and neither myself, nor Andy, nor my web host can figure it out (my web host tech has been working on it for 6 hours)...
My site: www.bonsainut.com
My site home page is in the root directory. My xenforo install is in /forums.
I have read and tried everything in the Use Full Friendly URL's FAQ/troubleshooting. I have read and tried every suggestion in every thread I can find on the subject. Specifically:
1) The .htaccess file is in place in my forum directory.
2) I have tried enabling RewriteBase in my .htaccess file (using both "/forums" and "/" paths).
3) My server has mod_rewrite installed.
4) My server has AllowOverride enabled.
Here is the .htaccess file in my root directory:
Here is the .htaccess file in my /forums directory:
When I enable Use Full Friendly URL's, I can navigate to my web site home page just fine, but I get an error when I try to navigate to my forums page (/forums).
Any suggestions?
My site: www.bonsainut.com
My site home page is in the root directory. My xenforo install is in /forums.
I have read and tried everything in the Use Full Friendly URL's FAQ/troubleshooting. I have read and tried every suggestion in every thread I can find on the subject. Specifically:
1) The .htaccess file is in place in my forum directory.
2) I have tried enabling RewriteBase in my .htaccess file (using both "/forums" and "/" paths).
3) My server has mod_rewrite installed.
4) My server has AllowOverride enabled.
Here is the .htaccess file in my root directory:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^bonsainut.com [nc]
RewriteRule ^(.*)$ http://www.bonsainut.com/$1 [R=301,L]
Here is the .htaccess file in my /forums directory:
Code:
# Mod_security can interfere with uploading of content such as attachments. If you
# cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
# SecFilterEngine Off
# SecFilterScanPOST Off
#</IfModule>
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 405 default
ErrorDocument 406 default
ErrorDocument 500 default
ErrorDocument 501 default
ErrorDocument 503 default
<IfModule mod_rewrite.c>
RewriteEngine On
# If you are having problems with the rewrite rules, remove the "#" from the
# line that begins "RewriteBase" below. You will also have to change the path
# of the rewrite to reflect the path to your XenForo installation.
# RewriteBase /xenforo
# This line may be needed to enable WebDAV editing with PHP as a CGI.
# RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
When I enable Use Full Friendly URL's, I can navigate to my web site home page just fine, but I get an error when I try to navigate to my forums page (/forums).
Any suggestions?