The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Friendly URL'S
Hi
I turned this option on in our ACP And now all our forums go to a 404, is there something I'm doing wrong? or do you need to run something else to make this work. Dave |
#2
|
||||
|
||||
Is your htaccess set correctly? If I remember right there is an htaccess in the do not upload folder of vbulletin for this.....I might be wrong.
Final_Koss helped me with mine. Just trying to shove you in some direction.....lol. Good luck. |
#3
|
||||
|
||||
Cheers Krusty, That's what I'm working on now, still getting 404's.......I'm not doing something right
|
#4
|
|||
|
|||
copy and paste your .htaccess file here
|
#5
|
||||
|
||||
I've been working on, final kaoss's article.... Not sure I fully understand it all, but it has speeded up the forum homepage sum what. Just can't get the url's to work on this: Mod Rewrite Friendly URLs all forums redirect to 404 pages, I don't fully understand what it does. Any help would be great
PHP Code:
|
#6
|
||||
|
||||
Here is how I did mine, they had to be the first thing in the file, I had the same issue...
Code:
<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule> RewriteEngine on RewriteBase / RewriteCond %{HTTP_HOST} !^www.XXXXXXXXXXXXXXXX.com$ [NC] RewriteRule ^(.*)$ https://www.XXXXXXXXXXXXXX.com/$1 [R=301,L] RewriteEngine on RewriteBase / RewriteCond %{SERVER_PORT} !443 RewriteRule (.*) https://www.XXXXXXXXXXXXXX.com [R=301,L] # This file is only needed if you have set the Forum Component URL in your admincp and you are # using the mod_rewrite option for friendly urls. If this is the case, copy this file # to your forum component stub directory. # If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your forum component directory. # RewriteBase /forum-stub-directory/ # If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off. Options -MultiViews RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] # 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} -f [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] # MVC RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA] # Check MVC result RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^(.*)$ - [NC,L] RewriteRule ^(.*)$ - [R=404,L] # FeedBurner RewriteCond %{HTTP_USER_AGENT} !FeedBurner [NC] |
#7
|
||||
|
||||
Thanks for sharing, but this is also stopping me from accessing the my ACP
|
#8
|
|||
|
|||
goto your config.php file and allocate new location for admincp and rename your admincp folder accordingly
|
#9
|
||||
|
||||
Quote:
My admin cp is already renamed in the config.php before I turned on the Mod Rewrite Friendly URLs |
#10
|
||||
|
||||
What error do you get? One option is to comment out lines or blocks of your htaccess and see if you can get access. After that uncomment out the blocks/lines and narrow it down to which line throws the error...
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|