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 Link to comment https://forums.phpfreaks.com/topic/129602-need-help-with-apache-clean-urls-and-get/ Share on other sites More sharing options...
Maq Posted October 22, 2008 Share Posted October 22, 2008 Code would be helpful... Link to comment https://forums.phpfreaks.com/topic/129602-need-help-with-apache-clean-urls-and-get/#findComment-671870 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] Link to comment https://forums.phpfreaks.com/topic/129602-need-help-with-apache-clean-urls-and-get/#findComment-671875 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.