User Tools

Site Tools


custom_error_pages_for_your_site

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
custom_error_pages_for_your_site [2021/03/12 19:48] – created peteyboycustom_error_pages_for_your_site [2022/02/13 22:25] jquah
Line 35: Line 35:
 Of course, while pico is the editor I like to use, you have your choice of several others and should feel free to use the one you like. You can also create or edit the file on your own system and upload it to SDF just as you would any other web document. Of course, while pico is the editor I like to use, you have your choice of several others and should feel free to use the one you like. You can also create or edit the file on your own system and upload it to SDF just as you would any other web document.
  
-With the Apache web server, as used on SDF, ".htaccess" provides "a way to make configuration changes on a per-directory basis." The complete use of this file is way beyond the scope of this article, but more information is available [[http://httpd.apache.org/docs/1.3/howto/htaccess.html|here]].+With the Apache web server, as used on SDF, ".htaccess" provides "a way to make configuration changes on a per-directory basis." The complete use of this file is way beyond the scope of this article, but more information is available [[http://httpd.apache.org/docs/current/howto/htaccess.html|here]].
  
 In our scenario, you are probably creating a new file, so you'll be starting with a blank slate. You will need to create one line for each error page that you define. To indicate to the server that you want to use your own code 404 message, you'll need to add a line that is similar to this one: In our scenario, you are probably creating a new file, so you'll be starting with a blank slate. You will need to create one line for each error page that you define. To indicate to the server that you want to use your own code 404 message, you'll need to add a line that is similar to this one:
  
-<file sh .htaccess>+<file sh .htaccess (vanity domain)>
 ErrorDocument 404 /404.html ErrorDocument 404 /404.html
 </file> </file>
  
-"ErrorDocument" indicates that you are defining your own, "404" is the error code you are taking responsibility for, and "/404.htmlis the name and location of your custom error document. Please note that the "/" in front of the file name is necessary on SDF for the relative path to work. And if you place the document in a subdirectory off your html root, you need to indcate that path in ".htaccess"If you are creating custom pages for additional codes, simply add the appropriate lines in ".htaccess"+"ErrorDocument" indicates that you are defining your own, "404" is the error code you are taking responsibility for, and ''/404.html'' is the name and location of your custom error document. Please note that the "/" in front of the file name indicates that ''404.html'' may be found in the //www root directory of the site that the server is masquerading as// (a concept known as DOCUMENT_ROOT). Because the same physical computer might handle requests for multiple host names, the DOCUMENT_ROOT will be different for each SDF user's vanity domain. Whenever the original request makes use of a vanity domain, say, //altego.freeshell.org//, the custom error document in the html subdirectory of //altego//'s $HOME will be loaded with the syntax above. 
 + 
 +Some SDF users prefer to have their sites accessible via **tilde-style URLs**, like http://sdf.org/~altego . In this case the DOCUMENT_ROOT is no longer pointed at //altego//'s html directory, but instead to the root html directory for SDF as a whole. Hence the location of the custom error page must be modified like so: 
 + 
 +<file sh .htaccess (tilde-style URL)> 
 +ErrorDocument 404 /~altego/404.html 
 +</file> 
 + 
 +If you want the same custom error page to show up //regardless of whether the visitor types the vanity domain or the tilde-style URL//, it becomes much more difficult for a single .htaccess file to do the job. (RewriteRule directives prefaced by conditions on HTTP_HOST are the most obvious mechanism, but they have to be constructed very carefully in order to play nice with the UserDir settings in httpd.conf. Detailed instructions are beyond the scope of this tutorial.) Choosing just one of the above syntaxes for ~/html/.htaccess will send half your visitors to another nonexistent URL, accompanied by a warning from the SDF server about errors encountered when processing .htaccess! 
 + 
 +Here are two possible ways to let your visitors use either style of URL, and still get your customized error page if they make a typo. They both involve duplication of the hosted content and (possibly manual) sync jobs. (To avoid these complications you might choose to: (a) disable the tilde-style URL --- ''mkhomepg -d'' will remove or insert your $LOGNAME in the ''UserDir enabled ...'' directive near the end of httpd.conf, (b) pare down the folder of the less-popular URL to a simple index.html that performs a redirect, or %%(c)%% try to hack together a workable combination of RewriteCond and RewriteRule directives that plays nicely with the UserDir settings in httpd.conf.) 
 +  - Delete the public_html symlink created by ''mkhomepg -d'', and make an actual folder of that name in your home directory. Give it and its parent directory loose enough permissions (go+rx should suffice) that the Apache "tilde user" can navigate to it. Periodically synchronize between public_html and html all content EXCEPT the .htaccess file, and make sure each folder's .htaccess gives the correct location relative to the DOCUMENT_ROOT (~/html/.htaccess contains ''ErrorDocument 404 /404.html'', while ~/public_html/.htaccess looks like ''ErrorDocument 404 /~altego/404.html''). 
 +  - Upgrade your membership to MetaARPA and toggle vanity domain hosting to the MetaArray. The tilde-style URL will still resolve to the cluster, where ''ErrorDocument 404 /~altego/404.html'' will continue to work as beforeThe vanity domain will resolve to mab, where your content must be uploaded again into the appropriate directory, and the htaccess file modified to read ''ErrorDocument 404 /404.html''. With MetaARPA membership you can set up a cronjob to keep the contents of your two html directories (cluster and MetaArray) in sync. 
 + 
 +Of course, if you place the document in a subdirectory off your html root, you need to indicate that path in ".htaccess"If you are creating custom pages for additional codes, simply add the appropriate lines in ".htaccess".
  
 After making your changes, it may be a good idea to reset the permissions on your website by entering the command: After making your changes, it may be a good idea to reset the permissions on your website by entering the command:
Line 54: Line 68:
  
 [[http://sdf.org/?tutorials/errorpage]] - traditional link (using [[wp>Revision_Control_System|RCS]]) [[http://sdf.org/?tutorials/errorpage]] - traditional link (using [[wp>Revision_Control_System|RCS]])
- 
- 
custom_error_pages_for_your_site.txt · Last modified: 2022/12/05 06:29 by hc9