Portal has vanished
Forum rules
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Portal has vanished
I have PHPbb installed under /forum directory, the portal was working great. I decided to redirect so the website works without /forum at the end: www[dot]d2kgaming[dot]net but since then the portal has vanished. Any ideas?
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Portal has vanished
Make sure your .htaccess is edited as instructed by install.xml.
Re: Portal has vanished
.htaccess file has changed.
Where should I add this? because when I add it after "common.php' website gets an error:
This is the .htaccess file as of now:
Where should I add this? because when I add it after "common.php' website gets an error:
Code: Select all
<![CDATA[DirectoryIndex portal.php index.php index.html index.htm]]>
Code: Select all
DirectoryIndex index.php portal.php index.html index.htm
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
Re: Portal has vanished
update: Portal works if I type it in manually : d2kgaming[dot]net/portal.php
I had my website redirected from d2kgaming[dot]net/forum to d2kgaming[dot]net, portal directory is under /forum
Is this a simple .htaccess redirect issue?
I had my website redirected from d2kgaming[dot]net/forum to d2kgaming[dot]net, portal directory is under /forum
Is this a simple .htaccess redirect issue?
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Portal has vanished
Code: Select all
DirectoryIndex index.php portal.php index.html index.htm
Re: Portal has vanished
I just tried:
Still no luck.
Code: Select all
DirectoryIndex portal.php index.php index.html index.htm
Re: Portal has vanished
Problem fixed, .htaccess file that I needed to change was in the /forum directory which looked like this:
I changed it to
Problem fixed.
Thanks MARC
Code: Select all
DirectoryIndex index.php
Code: Select all
DirectoryIndex portal.php index.php
Thanks MARC