Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Access Denied for Pages with a Colon |
|
Author |
|
omarqaz7
Joined: 02 Sep 2006 Posts: 3 Location: Los Angeles, CA
|
Posted: Sat 02 Sep '06 21:51 Post subject: Access Denied for Pages with a Colon |
|
|
I have an Apache 2.2.3 Server on a Windows Server 2003 machine and am running a copy of MediaWiki. I set it to use mod_rewrite, but now when I go to a special page with a colon in it (i.e. Special:Page) the Apache server gives me 403 error, and does not allow me to view the page. Is there any way I can either fix this bug in Apache or change the URL for MediaWiki special pages? |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3094 Location: Hilversum, NL, EU
|
Posted: Sat 02 Sep '06 22:10 Post subject: |
|
|
You do not tell which rewrite rule(s) you are using and what you want to achieve. There are no known issues like this in 2.2.3. When you are sure it is a bug in Apache, please file a bug report at http://httpd.apache.org/ .
Steffen |
|
Back to top |
|
omarqaz7
Joined: 02 Sep 2006 Posts: 3 Location: Los Angeles, CA
|
Posted: Sat 02 Sep '06 22:52 Post subject: |
|
|
Steffen wrote: | You do not tell which rewrite rule(s) you are using and what you want to achieve. There are no known issues like this in 2.2.3. When you are sure it is a bug in Apache, please file a bug report at http://httpd.apache.org/ .
Steffen |
I am not sure it is a bug in Apache that's just a guess. I made that assumption when I saw this page: http://www.apacheweek.com/issues/03-09-26
But since it was written in 2003 I assumed there was a bug fix.
Anyway I'm using the following rewrite rule:
Code: |
RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]
|
As for what I want to acheive, I want to be able to view a page with a colon in a path, without getting a 403 error.
If anyone has anymore infomation I would appreciate their help |
|
Back to top |
|
andydrizen
Joined: 16 Dec 2006 Posts: 1
|
Posted: Sat 16 Dec '06 15:07 Post subject: |
|
|
I'm also having problems with this..
My .htaccess file goes like this:
Code: | rewriteEngine On
Options +FollowSymlinks
RewriteRule ^wiki:([^/\.]+)?$ index.php?menu=wiki&page=$1 [nc] |
and when I go to the link
http://localhost/wiki:welcome
I get
Quote: | The website declined to show this webpage
HTTP 403
Most likely causes:
This website requires you to log in. |
help pls |
|
Back to top |
|
|
|
|
|
|