Sponsored Content
Top Forums Web Development Removing VBSEO for vbulletin – Reverting back to vbulletin URLs Post 302868621 by Neo on Monday 28th of October 2013 11:03:30 AM
Old 10-28-2013
Tools Example Forum RSS RewriteRules

Here are example RSS rewrite rules for forum RSS, to compensate for removing vBSEO:

Code:
RewriteRule ^homework-coursework-questions/external.php(.*)$ /external.php?forumids=130 [R=301,L]
RewriteRule ^emergency-unix-linux-support-help-me/external.php(.*)$ /external.php?forumids=129 [R=301,L]
RewriteRule ^unix-advanced-expert-users/external.php(.*)$ /external.php?forumids=7 [R=301,L]
RewriteRule ^unix-dummies-questions-answers/external.php(.*)$ /external.php?forumids=2 [R=301,L]
RewriteRule ^linux/external.php(.*)$ /external.php?forumids=45 [R=301,L]
RewriteRule ^google-chrome-os/external.php(.*)$ /external.php?forumids=131 [R=301,L]
RewriteRule ^red-hat/external.php(.*)$ /external.php?forumids=109 [R=301,L]
RewriteRule ^hp-ux/external.php(.*)$ /external.php?forumids=44 [R=301,L]
RewriteRule ^solaris/external.php(.*)$ /external.php?forumids=43 [R=301,L]
RewriteRule ^aix/external.php(.*)$ /external.php?forumids=47 [R=301,L]
RewriteRule ^os-x-apple/external.php(.*)$ /external.php?forumids=48 [R=301,L]
RewriteRule ^sco/external.php(.*)$ /external.php?forumids=52 [R=301,L]
RewriteRule ^debian/external.php(.*)$ /external.php?forumids=120 [R=301,L]
RewriteRule ^security/external.php(.*)$ /external.php?forumids=14 [R=301,L]
RewriteRule ^slackware/external.php(.*)$ /external.php?forumids=122 [R=301,L]
RewriteRule ^android/external.php(.*)$ /external.php?forumids=140 [R=301,L]
RewriteRule ^gentoo/external.php(.*)$ /external.php?forumids=121 [R=301,L]
RewriteRule ^suse/external.php(.*)$ /external.php?forumids=118 [R=301,L]
RewriteRule ^hardware/external.php(.*)$ /external.php?forumids=136 [R=301,L]
RewriteRule ^programming/external.php(.*)$ /external.php?forumids=104 [R=301,L]
RewriteRule ^bsd/external.php(.*)$ /external.php?forumids=46 [R=301,L]
RewriteRule ^ubuntu/external.php(.*)$ /external.php?forumids=117 [R=301,L]
RewriteRule ^infrastructure-monitoring/external.php(.*)$ /external.php?forumids=141 [R=301,L]
RewriteRule ^shell-programming-scripting/external.php(.*)$ /external.php?forumids=30 [R=301,L]
RewriteRule ^ip-networking/external.php(.*)$ /external.php?forumids=3 [R=301,L]
RewriteRule ^filesystems-disks-memory/external.php(.*)$ /external.php?forumids=34 [R=301,L]
RewriteRule ^virtualization-cloud-computing/external.php(.*)$ /external.php?forumids=125 [R=301,L]
RewriteRule ^unix-desktop-dummies-questions-answers/external.php(.*)$ /external.php?forumids=33 [R=301,L]
RewriteRule ^windows-dos-issues-discussions/external.php(.*)$ /external.php?forumids=36 [R=301,L]
RewriteRule ^web-programming/external.php(.*)$ /external.php?forumids=104 [R=301,L]
RewriteRule ^news-links-events-announcements/external.php(.*)$ /external.php?forumids=31 [R=301,L]
RewriteRule ^unix-ieee-std-1003-1-2001-posix-1/external.php(.*)$ /external.php?forumids=38 [R=301,L]
RewriteRule ^war-stories/external.php(.*)$ /external.php?forumids=145 [R=301,L]
RewriteRule ^whats-your-mind/external.php(.*)$ /external.php?forumids=54 [R=301,L]
RewriteRule ^members-only/external.php(.*)$ /external.php?forumids=87 [R=301,L]

 

We Also Found This Discussion For You

1. Post Here to Contact Site Administrators and Moderators

vbulletin addon for ads?

i'm wondering what vbulletin addon is used here to manage ads if the admin could let me know :) (1 Reply)
Discussion started by: disgust
1 Replies
PHAR.INTERCEPTFILEFUNCS(3)						 1						PHAR.INTERCEPTFILEFUNCS(3)

Phar::interceptFileFuncs - instructs phar to intercept fopen, file_get_contents, opendir, and all of the stat-related functions

SYNOPSIS
finalpublicstatic void Phar::interceptFileFuncs (void ) DESCRIPTION
instructs phar to intercept fopen(3), readfile(3), file_get_contents(3), opendir(3), and all of the stat-related functions. If any of these functions is called from within a phar archive with a relative path, the call is modified to access a file within the phar archive. Absolute paths are assumed to be attempts to load external files from the filesystem. This function makes it possible to run PHP applications designed to run off of a hard disk as a phar application. PARAMETERS
No parameters. RETURN VALUES
EXAMPLES
Example #1 A Phar.interceptFileFuncs(3) example <?php Phar::interceptFileFuncs(); include 'phar://' . __FILE__ . '/file.php'; ?> Assuming that this phar is at /path/to/myphar.phar and it contains file.php and file2.txt, if file.php contains this code: Example #2 A Phar.interceptFileFuncs(3) example <?php echo file_get_contents('file2.txt'); ?> Normally PHP would search the current directory for file2.txt, which would translate as the directory of file.php, or the current direc- tory of a command-line user. Phar.interceptFileFuncs(3) instructs PHP to consider the current directory to be phar:///path/to/myphar.phar/ and so opens phar:///path/to/myphar.phar/file2.txt in the above example code. PHP Documentation Group PHAR.INTERCEPTFILEFUNCS(3)
All times are GMT -4. The time now is 03:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy