Helpful Information
 
 
Category: vB5 Programming Discussions
Need help with .htaccess file

Hi, I'm trying to add a wordpress installation to my site. I have vbulletin installed in my root and I am using the seo formatted links.

I am installing my wordpress site in a subdirectory called wp/ so as not to disturb the existing vbulletin installation. I'm not sure how I should setup my .htaccess file to accommodate this. I tried combining the wordpress .htaccess and the vbulletin one and they are conflicting. Obviously I'm a novice with this url rewrite stuff :). Any help would be appreciated.

Here is my .htaccess:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /mysite
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /mysite/wp/index.php [L]
</IfModule>

# END WordPress

## Charset
AddDefaultCharset Off

## ETags
FileETag None

## Expires
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType text/html "access plus 1 seconds"
ExpiresByType image/gif "access plus 259200000 seconds"
ExpiresByType image/jpeg "access plus 259200000 seconds"
ExpiresByType image/png "access plus 259200000 seconds"
ExpiresByType text/css "access plus 60480000 seconds"
ExpiresByType text/javascript "access plus 21600000 seconds"
ExpiresByType application/x-javascript "access plus 21600000 seconds"
</ifModule>

DirectoryIndex /content

## Compression
<ifmodule mod_headers.c>
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</ifmodule>
</ifmodule>

## Rewrites
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

# Media Library
ReWriteRule ^media/m([0-9]+).*/tags$ media.php?do=tags_edit&mid=$1 [QSA]
ReWriteRule ^media/m([0-9]+).*/edit$ media.php?do=details_edit&mid=$1 [QSA]
ReWriteRule ^media/m([0-9]+).*/report$ media.php?do=report&mid=$1 [QSA]
ReWriteRule ^media/m([0-9]+).*/c([0-9]+)$ media.php?do=comment_edit&cmt=$2 [QSA]
ReWriteRule ^media/m([0-9]+).* media.php?do=details&mid=$1 [QSA]
ReWriteRule ^media/c([0-9]+).* media.php?do=category&cid=$1 [QSA]
ReWriteRule ^media/u([0-9]+).* media.php?do=user&uid=$1 [QSA]
ReWriteRule ^media/tag/(.*) media.php?do=tag&tid=$1 [QSA]
ReWriteRule ^media/tagcloud.* media.php?do=tag_cloud [QSA]
ReWriteRule ^media/search/(.*) media.php?do=search&query=$1 [QSA]
ReWriteRule ^media/letter/(.*) media.php?do=letter&query=$1 [QSA]
ReWriteRule ^media/submit.* media.php?do=submit [QSA]
ReWriteRule ^media/random.* media.php?do=random [QSA]
ReWriteRule ^media/admin/(\w+).* media.php?do=admin_$1 [QSA]

# Forum
RewriteRule ^threads/.* showthread.php [QSA]
RewriteRule ^forums/.* forumdisplay.php [QSA]
RewriteRule ^members/.* member.php [QSA]
RewriteRule ^blogs/.* blog.php [QSA]
ReWriteRule ^entries/.* entry.php [QSA]

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

# MVC
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]



Thanks!

Starting to think I should just move my vbulletin site to a subdomain.

If I'm not mistaking, I think if it's in it's own folder above vb you should be fine.
Have you noticed any errors?

In your Wordpress .htaccess, try adding this after the RewriteEngine On line:

RewriteBase /wp/

(it must have the ending /)










privacy (GDPR)