Hi pegasus
In my htaccess i have add only |wiki|yui
Rules for apache are all disabled
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# If filename is not 'wiki_index', replace WIKI_FILE and uncomment the following line (skip this for XenForo)
# RewriteRule ^WIKI_FILE.php wiki_index.php [L,QSA]
# If URL format is /wiki/path uncomment the following line
#RewriteRule ^yui-combo/([^/]+)/(.+)$ yui_loader.php?v=$1&f=$2 [L,QSA]
# If URL format is /wiki/path or replaces a catch-all rule, uncomment the following 3 lines (skip this for XenForo)
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)?$ wiki_index.php [L,QSA]
# If you are having problem with "None Could Be Negotiated" errors in Apache, uncomment this to turn off MultiViews
#Options -MultiViews
RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api|\.php|reviewpost/|classifieds/|photopost/|wiki|yui)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
#RewriteRule ^(.+)$ dbseo.php [L,QSA]
</ifmodule>
My installation it's www.mysite/forum/
And Wiki index it's standard files: wiki_index.php
If i disabled this, forum generate error 404. If enabled forum works but vaultwiki not work
Code:
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
#RewriteRule ^(.+)$ dbseo.php [L,QSA]
where am I wrong?
Bookmarks