envytomdead Posted October 22, 2008 Share Posted October 22, 2008 Hi, I am using apache 1.3 and cannot grab $_GET variables. I don't get 404 errors. It just always goes to the default page. I had this set up on server with apache 2 and had no such problems. Any one have any ideas on what may be causing this? LoadModule rewrite_module is uncommented Quote Link to comment Share on other sites More sharing options...
Maq Posted October 22, 2008 Share Posted October 22, 2008 Code would be helpful... Quote Link to comment Share on other sites More sharing options...
envytomdead Posted October 22, 2008 Author Share Posted October 22, 2008 Here is the code from the htaccess Options +FollowSymLinks RewriteEngine On RewriteBase /evergreen RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([A-Za-z_0-9]*)$ $1/ [R] RewriteRule ^([A-Za-z_0-9]*)/$ index.php?source=$1 RewriteRule ^([A-Za-z_0-9]*)/page/([A-Za-z0-9]*)$ $1/page/$2/ [R] RewriteRule ^([A-Za-z_0-9]*)/page/([A-Za-z0-9]*)/$ page.php?source=$1&p=$2 [L] RewriteRule ^page/([A-Za-z0-9_]*)$ page/$1/ [R] RewriteRule ^page/([A-Za-z0-9_]*)/$ page.php?p=$1 [L] 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.