Tagged Questions

0
votes
1answer
27 views

Custom 401 Error Page for SVN Server

I have SVN server running on one of my domains as svn.mydomain.com and would like to setup a 401 error document for when the user authentication fails. As svn isn't an actual folder or real …
1
vote
2answers
44 views

ErrorDocument 404 Not Sending Referrer Information: PHP

I'm using a standard htaccess ErrorDocument 404 to redirect users to a new page. In order to customize the 404, I need to know their referrer information (from the page they Tried to visit). …
0
votes
6answers
82 views

How to use errordocument to redirect to a php file in the same folder?

I want to take requests for missing files in a specific folder and redirect them to program.php in that folder. This is a program I will use a lot in different places, and I would prefer to avoid …
0
votes
3answers
62 views

custom 404 page for nonexistent php files

Hi, I just tried to redirect nonexistent files on the server to my custom 404 page but it only redirects .html files. I used that in my .htaccess file: ErrorDocument 404 /404/404.html How can I …
0
votes
0answers
39 views

php errordocument redirect access post

I am using errordocument in .htaccess to redirect a certain not found case to my processing script. This particular not found contains post data, but I cannot access it in my processing script. The …
0
votes
2answers
142 views

right order of rewrite rules in an htaccess file.

hi ! I need to have : http://www.example.com/v1/my-project/ redirected to http://example.com/my-project/ so : (1) remove the www from the http_host RewriteCond %{HTTP_HOST} …