Sorry to bring back this thread, I could use some help myself with some .htaccess rules
I am doing a test migration (so far) from VB4 to XF. The migration itself worked OK, even if we're talking a big forum, but I need to make sure the URLs work properly.
We're using VBSEO in the old forum (setting 1, if I'm not mistaken).
Here is what my URLs should look like:
CATEGORY: ../forum/bank-america-home-loans/
THREAD: ../forum/bank-america-home-loans/88397-run-around-hamp-boa-bayview.html
The VB install is in the /forum/ directory.
Now my Xenforo install is in the /xf/ directory and my current URLs look like this:
CATEGORY: ../xf/
forums/bank-of-america-home-loans
.90/ (I need to lose the red text)
THREAD: ../xf/
threads/run-around-on-hamp-from-boa-bayview.88397/ (in this case I need to lose the /threads/ bit, have the category display in the link, the ID moved before the 'wording' and also end in an .html
How should I edit my .htaccess?
Currently it looks like this:
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 500 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]
RewriteRule ^[^/]+/([0-9]+)-[^\.]+\.html$ /threads/$1/? [R=301,L]
</IfModule>
Thank you for your support