[Bf-docboard-svn] bf-manual: [9914] trunk/blender_docs/resources/.htaccess: Build: Fix syntax error in .htaccess

Aaron Carlisle noreply at blender.org
Wed Jan 25 03:36:44 CET 2023


Revision: 9914
          https://developer.blender.org/rBM9914
Author:   Blendify
Date:     2023-01-25 03:36:44 +0100 (Wed, 25 Jan 2023)
Log Message:
-----------
Build: Fix syntax error in .htaccess

At somepoint the quotes were escaped which lead to errors.

This should resolve T102618

Modified Paths:
--------------
    trunk/blender_docs/resources/.htaccess

Modified: trunk/blender_docs/resources/.htaccess
===================================================================
--- trunk/blender_docs/resources/.htaccess	2023-01-24 12:18:21 UTC (rev 9913)
+++ trunk/blender_docs/resources/.htaccess	2023-01-25 02:36:44 UTC (rev 9914)
@@ -1,7 +1,7 @@
 
 ErrorDocument 404 /manual/{lang}/{version}/404.html
-RedirectMatch \"^/manual/{lang}/{version}/addons/import_export/io_(.*)\" \"/manual/{lang}/{version}/addons/import_export/$1\"
-RedirectMatch \"^/manual/{lang}/{version}/modeling/geometry_nodes/curve/curve_parameter.html\" \"/manual/{lang}/{version}/modeling/geometry_nodes/curve/spline_parameter.html\" 
-RedirectMatch \"^/manual/{lang}/{version}/modeling/geometry_nodes/utilities/compare_floats.html\" \"/manual/{lang}/{version}/modeling/geometry_nodes/utilities/compare.html\" 
-RedirectMatch \"^/manual/{lang}/{version}/about/contribute\" \"/manual/{lang}/{version}/contribute/$1\"
-RedirectMatch \"^/manual/{lang}/{version}/about/index.html\" \"/manual/{lang}/{version}/contribute/index.html$1\"
+RedirectMatch "^/manual/{lang}/{version}/addons/import_export/io_(.*)" "/manual/{lang}/{version}/addons/import_export/$1"
+RedirectMatch "^/manual/{lang}/{version}/modeling/geometry_nodes/curve/curve_parameter.html" "/manual/{lang}/{version}/modeling/geometry_nodes/curve/spline_parameter.html" 
+RedirectMatch "^/manual/{lang}/{version}/modeling/geometry_nodes/utilities/compare_floats.html" "/manual/{lang}/{version}/modeling/geometry_nodes/utilities/compare.html" 
+RedirectMatch "^/manual/{lang}/{version}/about/contribute/" "/manual/{lang}/{version}/contribute/$1"
+RedirectMatch "^/manual/{lang}/{version}/about/index.html" "/manual/{lang}/{version}/contribute/index.html"
\ No newline at end of file



More information about the Bf-docboard-svn mailing list