htaccess Elite

.htaccess tutorial


All times are UTC [ DST ]





Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: Blank index.php
PostPosted: 09 Dec 2007 05:35 
Offline

Joined: 09 Dec 2007 05:32
Posts: 1
I am running a script and require the following in my .htaccess file.

Code:
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteRule ^$ /cgi-bin/X.cgi?%{REQUEST_URI} [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_URI} !/.*/
RewriteRule ^.*\.html$ /cgi-bin/X.cgi?%{REQUEST_URI} [L]


Everything works fine when I go to http://mydomain.com/index.php but if I just go to http://mydomain.com it only shows a blank page. If I delete the contents of .htaccess then everything goes back to normal.

Any help is appreciated.


Top
 Profile  
 
 Post subject: Re: Blank index.php
PostPosted: 15 Dec 2007 22:08 
Offline

Joined: 28 Feb 2007 17:16
Posts: 40
fun4uoc wrote:
..in my .htaccess file.

Code:
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteRule ^$ /cgi-bin/X.cgi?%{REQUEST_URI} [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_URI} !/.*/
RewriteRule ^.*\.html$ /cgi-bin/X.cgi?%{REQUEST_URI} [L]


Everything works fine when I go to http://mydomain.com/index.php but if I just go to http://mydomain.com it only shows a blank page. If I delete the contents of .htaccess then everything goes back to normal.


try this:

Code:
Options +FollowSymlinks

DirectoryIndex index.php

RewriteEngine On
RewriteBase /
RewriteRule ^$ /cgi-bin/X.cgi?%{REQUEST_URI} [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_URI} !^/.*/$
RewriteRule ^.*\.html$ /cgi-bin/X.cgi?%{REQUEST_URI} [L]


Explain what the X.cgi is, what the !^/.*/ is doing, etc.. if this doesn't work


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB