I have already installed a mediawiki 1.8.2 with very short urls installed, all is working fine, but the preview page isn't working, when i try to preview changes when im modifying i get a blank page.
I search a lot but only get information to do the very short urls, nobody has the same problem.
My .htaccess is:
RewriteEngine on RewriteRule ^[^:]*.(php|src|jpg|jpeg|png|gif|bmp|css|js|inc|phtml|pl|ico|html|shtml)$ - [L,NC] RewriteRule ^index.php?title - [L] RewriteRule ^(.*)&(.*)$ $1%26$2 RewriteRule ^(.+)$ /index.php?title=$1 [L,QSA]
(ive tried 3 different ones with the same results)
And my LocalSettings.php is:
$wgScriptPath = ""; $wgScript = "/index.php"; $wgRedirectScript = "/redirect.php"; $wgArticlePath = "$wgScriptPath/$1";
If anybody knows i will be thankful.