Nolongerused3921 Posted August 14, 2007 Share Posted August 14, 2007 On the advice of a few people on another forum, I had my sysadmin install SuPHP - so that my upload script would work properly, however now my mod_rewrite is broken. You can view the problem here: http://www.eyesoute.com/gallery/view-29 It is supposed to show the item with id 29, as you can see. However it shows the gallery index (As if /gallery/ was typed in without the view-29) The .htaccess file: #.htaccess RewriteEngine On #This will force trailing slashes RewriteCond %{SCRIPT_FILENAME} -f [OR] RewriteCond %{SCRIPT_FILENAME} -d RewriteRule .* - [L] #RewriteCond %{REQUEST_URI} !^*(css|png|jpe?g|gif) RewriteRule ^(.+)/(.+)/?$ $1.php?args=$2 [QSA,L] RewriteRule ^(.+)$ $1.php [QSA,L,NC] My very framework relies on the .htaccess working this way... I can turn it off, however I would really rather not - so if you have any idea how I can fix this, please do tell. And on a related note, is it possible to run PHP under a user and not use cgi_php? Would also like to note that my Mediawiki wiki is now completely broken, and refuses to load - as it relies on similar rewrite rules. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.