############################################################################### # WARNING ############################################################################### # Only modify this file if you know what you're doing. This file has # the potential to make pages become PERMANENTLY UNREACHABLE. If in # doubt, refer to these links: # # RewriteRule - http://httpd.apache.org/docs/current/mod/mod_rewrite.html # RewriteRule flags - http://httpd.apache.org/docs/current/rewrite/flags.html # .htaccess tester - http://htaccess.madewithlove.be/ # # And remember: three-oh-ONE (301) menas you get ONE chance to get it right; # three-oh-TWO (302) means you get TWO chances. ############################################################################### # set error pages ErrorDocument 404 /404.html # turn off automatic directory indices Options -Indexes # turn on redirection Options +FollowSymLinks RewriteEngine on # NOTE: # Some of the below redirects are 302s, and some are 301s. 302s are used # for redirects whose targets change sometimes. For example: # - /docs/ -> /docs/fr/, /docs/en/, etc. # - /docs/en/ -> /docs/en/dev/, /docs/en/latest/, etc. # - /docs/en/latest -> /docs/en/4.0.0/, /docs/en/5.0.0/, etc. # # 301s are for PERMANENT redirects. These are used only for mapping old # pages to new pages. # # NOTE: # (\w\w(?:-\w\w)?) - regex for languages # (?:\d+\.(?:\d+\.\d+|x))|dev|latest - regex for versions # # NOTE: # Meanings of some of the flags at the ends of rules: # # L - terminal rule; if it applies, no more rules are checked # R - redirect (followed by code) # NE - no escaping special characters # 302 (temporary): # # docs/ -> docs/[default language]/latest/ # docs/* -> docs/*/latest/ # docs/*/ -> docs/*/latest/ # docs/*/latest -> docs/*/latest/ # RewriteRule ^.*docs/$ /docs/en/latest/ [R=302,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)$ /docs/$1/latest/ [R=302,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/$ /docs/$1/latest/ [R=302,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest$ /docs/$1/latest/ [R=302,L] # 302 (temporary): # # docs/*/XX/* -> docs/*/YY/* # RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/edge/(.*)$ /docs/$1/dev/$2 [R=302,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/6.0.0/(.*)$ /docs/$1/6.x/$2 [R=302,L] # 302 (temporary): # # docs/XX/* -> docs/YY/* # RewriteRule ^.*docs/zh/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/(.*)$ /docs/zh-tw/$1/$2 [R=302,L] # 301 (PERMANENT): # # old docs pages -> new docs pages (global) # # NOTE: # The first part of the path (i.e. the ".*") is thrown away and replaced # by site.baseurl. It is thrown away because there is no RewriteCond to # control whether the rewrite happens to a URI or a local file path # (when Apache is locating the local file to serve). RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/config_ref_images.md.html$ /docs/$1/$2/config_ref/images.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/config_ref_index.md.html$ /docs/$1/$2/config_ref/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_accelerometer_accelerometer.md.html$ /docs/$1/$2/cordova/accelerometer/accelerometer.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_camera_camera.cleanup.md.html$ /docs/$1/$2/cordova/camera/camera.cleanup.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_camera_camera.md.html$ /docs/$1/$2/cordova/camera/camera.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_compass_compass.md.html$ /docs/$1/$2/cordova/compass/compass.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_connection_connection.md.html$ /docs/$1/$2/cordova/connection/connection.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_contacts_contacts.md.html$ /docs/$1/$2/cordova/contacts/contacts.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_device_device.md.html$ /docs/$1/$2/cordova/device/device.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_device_device.model.md.html$ /docs/$1/$2/cordova/device/device.model.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_events_events.md.html$ /docs/$1/$2/cordova/events/events.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_file_file.md.html$ /docs/$1/$2/cordova/file/file.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_geolocation_geolocation.md.html$ /docs/$1/$2/cordova/geolocation/geolocation.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_globalization_globalization.md.html$ /docs/$1/$2/cordova/globalization/globalization.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_inappbrowser_inappbrowser.md.html$ /docs/$1/$2/cordova/inappbrowser/inappbrowser.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_media_capture_capture.md.html$ /docs/$1/$2/cordova/media/capture/capture.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_media_media.md.html$ /docs/$1/$2/cordova/media/media.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_notification_notification.md.html$ /docs/$1/$2/cordova/notification/notification.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_splashscreen_splashscreen.md.html$ /docs/$1/$2/cordova/splashscreen/splashscreen.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_storage.md.html$ /docs/$1/$2/cordova/storage/storage.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_appdev_privacy_index.md.html$ /docs/$1/$2/guide/appdev/privacy/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_appdev_whitelist_index.md.html$ /docs/$1/$2/guide/appdev/allowlist/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_cli_index.md.html$ /docs/$1/$2/guide/cli/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_cli_template.md.html$ /docs/$1/$2/guide/cli/template.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_hybrid_plugins_index.md.html$ /docs/$1/$2/guide/hybrid/plugins/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_hybrid_webviews_index.md.html$ /docs/$1/$2/guide/hybrid/webviews/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_overview_index.md.html$ /docs/$1/$2/guide/overview/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_android_config.md.html$ /docs/$1/$2/guide/platforms/android/config.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_android_index.md.html$ /docs/$1/$2/guide/platforms/android/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_android_plugin.md.html$ /docs/$1/$2/guide/platforms/android/plugin.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_android_tools.md.html$ /docs/$1/$2/guide/platforms/android/tools.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_android_upgrading.md.html$ /docs/$1/$2/guide/platforms/android/upgrading.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_android_webview.md.html$ /docs/$1/$2/guide/platforms/android/webview.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry10_config.md.html$ /docs/$1/$2/guide/platforms/blackberry10/config.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry10_index.md.html$ /docs/$1/$2/guide/platforms/blackberry10/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry10_plugin.md.html$ /docs/$1/$2/guide/platforms/blackberry10/plugin.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry10_tools.md.html$ /docs/$1/$2/guide/platforms/blackberry10/tools.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry10_upgrading.md.html$ /docs/$1/$2/guide/platforms/blackberry10/upgrading.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry_config.md.html$ /docs/$1/$2/guide/platforms/blackberry/config.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry_index.md.html$ /docs/$1/$2/guide/platforms/blackberry/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry_plugin.md.html$ /docs/$1/$2/guide/platforms/blackberry/plugin.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry_tools.md.html$ /docs/$1/$2/guide/platforms/blackberry/tools.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry_upgrading.md.html$ /docs/$1/$2/guide/platforms/blackberry/upgrading.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_firefoxos_config.md.html$ /docs/$1/$2/guide/platforms/firefoxos/config.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_index.md.html$ /docs/$1/$2/guide/platforms/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ios_config.md.html$ /docs/$1/$2/guide/platforms/ios/config.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ios_index.md.html$ /docs/$1/$2/guide/platforms/ios/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ios_plugin.md.html$ /docs/$1/$2/guide/platforms/ios/plugin.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ios_tools.md.html$ /docs/$1/$2/guide/platforms/ios/tools.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ios_upgrading.md.html$ /docs/$1/$2/guide/platforms/ios/upgrading.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ios_webview.md.html$ /docs/$1/$2/guide/platforms/ios/webview.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_tizen_index.md.html$ /docs/$1/$2/guide/platforms/tizen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_win8_index.md.html$ /docs/$1/$2/guide/platforms/win8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_win8_tools.md.html$ /docs/$1/$2/guide/platforms/win8/tools.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_win8_upgrading.md.html$ /docs/$1/$2/guide/platforms/win8/upgrading.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp7_index.md.html$ /docs/$1/$2/guide/platforms/wp7/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_index.md.html$ /docs/$1/$2/guide/platforms/wp8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_plugin.md.html$ /docs/$1/$2/guide/platforms/wp8/plugin.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_tools.md.html$ /docs/$1/$2/guide/platforms/wp8/tools.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_upgrading.md.html$ /docs/$1/$2/guide/platforms/wp8/upgrading.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/plugin_ref_plugman.md.html$ /docs/$1/$2/plugin_ref/plugman.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/plugin_ref_spec.md.html$ /docs/$1/$2/plugin_ref/spec.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_plugins_pluginapis.md.html$ /docs/$1/$2/cordova/plugins/pluginapis.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_database_database.md.html$ /docs/$1/$2/cordova/storage/database/database.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_localstorage_localstorage.md.html$ /docs/$1/$2/cordova/storage/localstorage/localstorage.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_parameters_display_name.md.html$ /docs/$1/$2/cordova/storage/parameters/display_name.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_parameters_name.md.html$ /docs/$1/$2/cordova/storage/parameters/name.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_parameters_size.md.html$ /docs/$1/$2/cordova/storage/parameters/size.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_parameters_version.md.html$ /docs/$1/$2/cordova/storage/parameters/version.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_sqlerror_sqlerror.md.html$ /docs/$1/$2/cordova/storage/sqlerror/sqlerror.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_sqlresultset_sqlresultset.md.html$ /docs/$1/$2/cordova/storage/sqlresultset/sqlresultset.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_sqlresultsetrowlist_sqlresultsetrowlist.md.html$ /docs/$1/$2/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_sqltransaction_sqltransaction.md.html$ /docs/$1/$2/cordova/storage/sqltransaction/sqltransaction.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/cordova_storage_storage.opendatabase.md.html$ /docs/$1/$2/cordova/storage/storage.opendatabase.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_amazonfireos_config.md.html$ /docs/$1/$2/guide/platforms/amazonfireos/config.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_amazonfireos_index.md.html$ /docs/$1/$2/guide/platforms/amazonfireos/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_amazonfireos_plugin.md.html$ /docs/$1/$2/guide/platforms/amazonfireos/plugin.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_amazonfireos_webview.md.html$ /docs/$1/$2/guide/platforms/amazonfireos/webview.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ubuntu_index.md.html$ /docs/$1/$2/guide/platforms/ubuntu/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_support_index.md.html$ /docs/$1/$2/guide/support/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_appdev_hooks_index.md.html$ /docs/$1/$2/guide/appdev/hooks/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_appdev_security_index.md.html$ /docs/$1/$2/guide/appdev/security/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_next_index.md.html$ /docs/$1/$2/guide/next/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_android_upgrade.md.html$ /docs/$1/$2/guide/platforms/android/upgrade.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry10_upgrade.md.html$ /docs/$1/$2/guide/platforms/blackberry10/upgrade.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_blackberry_upgrade.md.html$ /docs/$1/$2/guide/platforms/blackberry/upgrade.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_firefoxos_index.md.html$ /docs/$1/$2/guide/platforms/firefoxos/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_ios_upgrade.md.html$ /docs/$1/$2/guide/platforms/ios/upgrade.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_win8_packaging.md.html$ /docs/$1/$2/guide/platforms/win8/packaging.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_win8_plugin.md.html$ /docs/$1/$2/guide/platforms/win8/plugin.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_win8_upgrade.md.html$ /docs/$1/$2/guide/platforms/win8/upgrade.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_win8_win10-support.md.html$ /docs/$1/$2/guide/platforms/win8/win10-support.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_parallels.md.html$ /docs/$1/$2/guide/platforms/wp8/parallels.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_upgrade.md.html$ /docs/$1/$2/guide/platforms/wp8/upgrade.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_vmware.md.html$ /docs/$1/$2/guide/platforms/wp8/vmware.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_platforms_wp8_webview.md.html$ /docs/$1/$2/guide/platforms/wp8/webview.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/platform_plugin_versioning_ref_index.md.html$ /docs/$1/$2/platform_plugin_versioning_ref/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_android_index.md.html$ /docs/$1/$2/guide/getting-started/android/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_blackberry_index.md.html$ /docs/$1/$2/guide/getting-started/blackberry/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_index.md.html$ /docs/$1/$2/guide/getting-started/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_ios_index.md.html$ /docs/$1/$2/guide/getting-started/ios/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_symbian_index.md.html$ /docs/$1/$2/guide/getting-started/symbian/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_webos_index.md.html$ /docs/$1/$2/guide/getting-started/webos/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_windows-phone_index.md.html$ /docs/$1/$2/guide/getting-started/windows-phone/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_blackberry_index.md.html$ /docs/$1/$2/guide/upgrading/blackberry/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_webos_index.md.html$ /docs/$1/$2/guide/upgrading/webos/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_accelerometer_accelerometer.md.html$ /docs/$1/$2/phonegap/accelerometer/accelerometer.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_camera_camera.md.html$ /docs/$1/$2/phonegap/camera/camera.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_compass_compass.md.html$ /docs/$1/$2/phonegap/compass/compass.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_connection_connection.md.html$ /docs/$1/$2/phonegap/connection/connection.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_contacts_contacts.md.html$ /docs/$1/$2/phonegap/contacts/contacts.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_device_device.md.html$ /docs/$1/$2/phonegap/device/device.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_events_events.md.html$ /docs/$1/$2/phonegap/events/events.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_file_file.md.html$ /docs/$1/$2/phonegap/file/file.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_geolocation_geolocation.md.html$ /docs/$1/$2/phonegap/geolocation/geolocation.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_media_capture_capture.md.html$ /docs/$1/$2/phonegap/media/capture/capture.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_media_media.md.html$ /docs/$1/$2/phonegap/media/media.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_notification_notification.md.html$ /docs/$1/$2/phonegap/notification/notification.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/phonegap_storage_storage.md.html$ /docs/$1/$2/phonegap/storage/storage.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_bada_index.md.html$ /docs/$1/$2/guide/getting-started/bada/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_android_index.md.html$ /docs/$1/$2/guide/upgrading/android/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_bada_index.md.html$ /docs/$1/$2/guide/upgrading/bada/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_index.md.html$ /docs/$1/$2/guide/upgrading/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_ios_index.md.html$ /docs/$1/$2/guide/upgrading/ios/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_symbian_index.md.html$ /docs/$1/$2/guide/upgrading/symbian/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_windows-phone_index.md.html$ /docs/$1/$2/guide/upgrading/windows-phone/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_whitelist_index.md.html$ /docs/$1/$2/guide/appdev/allowlist/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_command-line_index.md.html$ /docs/$1/$2/guide/command-line/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_cordova-webview_android.md.html$ /docs/$1/$2/guide/cordova-webview/android.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_cordova-webview_index.md.html$ /docs/$1/$2/guide/cordova-webview/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_cordova-webview_ios.md.html$ /docs/$1/$2/guide/cordova-webview/ios.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_android_index.md.html$ /docs/$1/$2/guide/plugin-development/android/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_bada_index.md.html$ /docs/$1/$2/guide/plugin-development/bada/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_blackberry_index.md.html$ /docs/$1/$2/guide/plugin-development/blackberry/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_index.md.html$ /docs/$1/$2/guide/plugin-development/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_ios_index.md.html$ /docs/$1/$2/guide/plugin-development/ios/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_webos_index.md.html$ /docs/$1/$2/guide/plugin-development/webos/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_windows-phone_index.md.html$ /docs/$1/$2/guide/plugin-development/windows-phone/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_tizen_index.md.html$ /docs/$1/$2/guide/getting-started/tizen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_tizen_index.md.html$ /docs/$1/$2/guide/plugin-development/tizen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_tizen_index.md.html$ /docs/$1/$2/guide/upgrading/tizen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_windows-8_index.md.html$ /docs/$1/$2/guide/getting-started/windows-8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_index.md.html$ /docs/$1/$2/guide/project-settings/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_ios_index.md.html$ /docs/$1/$2/guide/project-settings/ios/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_windows-phone-7_index.md.html$ /docs/$1/$2/guide/getting-started/windows-phone-7/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_windows-phone-8_index.md.html$ /docs/$1/$2/guide/getting-started/windows-phone-8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_android_index.md.html$ /docs/$1/$2/guide/project-settings/android/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_bada_index.md.html$ /docs/$1/$2/guide/project-settings/bada/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_blackberry_index.md.html$ /docs/$1/$2/guide/project-settings/blackberry/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_firefoxos_index.md.html$ /docs/$1/$2/guide/project-settings/firefoxos/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_webos_index.md.html$ /docs/$1/$2/guide/project-settings/webos/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_windows8_index.md.html$ /docs/$1/$2/guide/project-settings/windows8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_wp7_index.md.html$ /docs/$1/$2/guide/project-settings/wp7/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_project-settings_wp8_index.md.html$ /docs/$1/$2/guide/project-settings/wp8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_getting-started_blackberry10_index.md.html$ /docs/$1/$2/guide/getting-started/blackberry10/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_plugin-development_blackberry10_index.md.html$ /docs/$1/$2/guide/plugin-development/blackberry10/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_privacy_index.md.html$ /docs/$1/$2/guide/privacy/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/((?:\d+\.(?:\d+\.\d+|x))|dev|latest)/guide_upgrading_windows-8_index.md.html$ /docs/$1/$2/guide/upgrading/windows-8/index.html [NE,R=301,L] # 301 (PERMANENT): # # old docs pages -> new docs pages (version-specific) # RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/android/tools.html$ /docs/$1/dev/guide/platforms/android/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/android/tools.html$ /docs/$1/latest/guide/platforms/android/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/android/lifecycle.html$ /docs/$1/dev/guide/platforms/android/index.html#lifecycle-guide [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/android/lifecycle.html$ /docs/$1/latest/guide/platforms/android/index.html#lifecycle-guide [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/android/config.html$ /docs/$1/dev/config_ref/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/android/config.html$ /docs/$1/latest/config_ref/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/ios/tools.html$ /docs/$1/dev/guide/platforms/ios/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/ios/tools.html$ /docs/$1/latest/guide/platforms/ios/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/ios/config.html$ /docs/$1/dev/config_ref/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/ios/config.html$ /docs/$1/latest/config_ref/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/win8/packaging.html$ /docs/$1/dev/guide/platforms/win8/index.html#signing-an-app [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/win8/packaging.html$ /docs/$1/latest/guide/platforms/win8/index.html#signing-an-app [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/win8/win10-support.html$ /docs/$1/dev/guide/platforms/win8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/win8/win10-support.html$ /docs/$1/latest/guide/platforms/win8/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/cordova/plugins/pluginapis.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/plugins/pluginapis.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/win8/index.html$ /docs/$1/dev/guide/platforms/windows/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/win8/index.html$ /docs/$1/latest/guide/platforms/windows/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/win8/plugin.html$ /docs/$1/dev/guide/platforms/windows/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/win8/plugin.html$ /docs/$1/latest/guide/platforms/windows/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/win8/upgrade.html$ /docs/$1/dev/guide/platforms/windows/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/win8/upgrade.html$ /docs/$1/latest/guide/platforms/windows/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/blackberry10/home.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/blackberry10/home.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/blackberry10/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/blackberry10/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/blackberry10/tools.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/blackberry10/tools.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/blackberry10/config.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/blackberry10/config.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/blackberry10/plugin.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/blackberry10/plugin.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/blackberry10/upgrade.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/blackberry10/upgrade.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/blackberry/upgrade.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/blackberry/upgrade.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/ubuntu/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/ubuntu/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/wp8/home.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/wp8/home.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/wp8/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/wp8/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/wp8/plugin.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/wp8/plugin.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/wp8/upgrade.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/wp8/upgrade.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/wp8/parallels.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/wp8/parallels.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/wp8/vmware.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/wp8/vmware.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/dev/guide/platforms/wp8/webview.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/guide/platforms/wp8/webview.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-contacts/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-console/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-device-motion/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-device-orientation/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-file-transfer/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-globalization/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-legacy-whitelist/index.html$ /docs/$1/deprecated.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/reference/cordova-plugin-whitelist/index.html$ /docs/$1/latest/guide/appdev/allowlist/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/acceleration/acceleration.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/accelerometer.clearWatch.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/accelerometer.getCurrentAcceleration.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/accelerometer.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/accelerometer.watchAcceleration.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/parameters/accelerometerError.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/parameters/accelerometerOptions.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/accelerometer/parameters/accelerometerSuccess.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/camera.cleanup.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/camera.getPicture.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/camera.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/parameter/cameraError.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/parameter/cameraOptions.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/parameter/CameraPopoverHandle.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/parameter/CameraPopoverOptions.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/camera/parameter/cameraSuccess.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/compass.clearWatch.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/compass.clearWatchFilter.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/compass.getCurrentHeading.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/compass.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/compass.watchHeading.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/compass.watchHeadingFilter.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/compassError/compassError.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/parameters/compassError.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/parameters/compassHeading.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/parameters/compassOptions.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/compass/parameters/compassSuccess.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/connection/connection.html$ /docs/$1/latest/reference/cordova-plugin-network-information/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/connection/connection.type.html$ /docs/$1/latest/reference/cordova-plugin-network-information/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/Contact/contact.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/ContactAddress/contactaddress.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/ContactError/contactError.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/ContactField/contactfield.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/ContactFindOptions/contactfindoptions.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/ContactName/contactname.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/ContactOrganization/contactorganization.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/contacts.create.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/contacts.find.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/contacts.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/parameters/contactError.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/parameters/contactFields.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/parameters/contactFindOptions.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/contacts/parameters/contactSuccess.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/device/device.cordova.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/device/device.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/device/device.model.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/device/device.name.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/device/device.platform.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/device/device.uuid.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/device/device.version.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/directoryentry/directoryentry.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/directoryreader/directoryreader.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/file.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/fileentry/fileentry.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/fileerror/fileerror.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/fileobj/fileobj.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/filereader/filereader.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/filesystem/filesystem.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/filewriter/filewriter.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/flags/flags.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/localfilesystem/localfilesystem.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/metadata/metadata.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/filetransfer/filetransfer.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/filetransfererror/filetransfererror.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/fileuploadoptions/fileuploadoptions.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/file/fileuploadresult/fileuploadresult.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/Coordinates/coordinates.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/geolocation.clearWatch.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/geolocation.getCurrentPosition.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/geolocation.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/geolocation.watchPosition.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/parameters/geolocation.options.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/parameters/geolocationError.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/parameters/geolocationSuccess.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/Position/position.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/geolocation/PositionError/positionError.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.dateToString.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.getCurrencyPattern.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.getDateNames.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.getDatePattern.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.getFirstDayOfWeek.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.getLocaleName.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.getNumberPattern.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.getPreferredLanguage.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.isDayLightSavingsTime.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.numberToString.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.stringToDate.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/globalization.stringToNumber.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/globalization/GlobalizationError/globalizationerror.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/inappbrowser/inappbrowser.html$ /docs/$1/latest/reference/cordova-plugin-inappbrowser/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/inappbrowser/window.open.html$ /docs/$1/latest/reference/cordova-plugin-inappbrowser/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/capture.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/captureAudio.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/captureAudioOptions.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/CaptureCB.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/CaptureError.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/CaptureErrorCB.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/captureImage.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/captureImageOptions.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/captureVideo.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/captureVideoOptions.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/ConfigurationData.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/MediaFile.getFormatData.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/MediaFile.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/capture/MediaFileData.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.getCurrentPosition.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.getDuration.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.pause.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.play.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.release.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.seekTo.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.setVolume.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.startRecord.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.stop.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/media.stopRecord.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/MediaError/mediaError.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/media/Parameters/mediaError.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/notification/notification.alert.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/notification/notification.beep.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/notification/notification.confirm.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/notification/notification.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/notification/notification.prompt.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/notification/notification.vibrate.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/splashscreen/splashscreen.hide.html$ /docs/$1/latest/reference/cordova-plugin-splashscreen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/splashscreen/splashscreen.html$ /docs/$1/latest/reference/cordova-plugin-splashscreen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova/splashscreen/splashscreen.show.html$ /docs/$1/latest/reference/cordova-plugin-splashscreen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/acceleration/acceleration.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/accelerometer.clearWatch.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/accelerometer.getCurrentAcceleration.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/accelerometer.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/accelerometer.watchAcceleration.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/parameters/accelerometerError.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/parameters/accelerometerOptions.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/accelerometer/parameters/accelerometerSuccess.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/camera/camera.getPicture.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/camera/camera.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/camera/parameter/cameraError.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/camera/parameter/cameraOptions.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/camera/parameter/cameraSuccess.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/compass.clearWatch.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/compass.clearWatchFilter.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/compass.getCurrentHeading.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/compass.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/compass.watchHeading.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/compass.watchHeadingFilter.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/compassError/compassError.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/parameters/compassError.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/parameters/compassHeading.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/parameters/compassOptions.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/compass/parameters/compassSuccess.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/connection/connection.html$ /docs/$1/latest/reference/cordova-plugin-network-information/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/connection/connection.type.html$ /docs/$1/latest/reference/cordova-plugin-network-information/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/Contact/contact.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/ContactAddress/contactaddress.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/ContactError/contactError.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/ContactField/contactfield.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/ContactFindOptions/contactfindoptions.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/ContactName/contactname.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/ContactOrganization/contactorganization.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/contacts.create.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/contacts.find.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/contacts.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/parameters/contactError.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/parameters/contactFields.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/parameters/contactFindOptions.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/contacts/parameters/contactSuccess.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/device/device.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/device/device.name.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/device/device.phonegap.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/device/device.platform.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/device/device.uuid.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/device/device.version.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/directoryentry/directoryentry.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/directoryreader/directoryreader.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/file.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/fileentry/fileentry.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/fileerror/fileerror.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/fileobj/fileobj.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/filereader/filereader.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/filesystem/filesystem.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/filewriter/filewriter.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/flags/flags.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/localfilesystem/localfilesystem.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/metadata/metadata.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/filetransfer/filetransfer.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/filetransfererror/filetransfererror.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/fileuploadoptions/fileuploadoptions.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/file/fileuploadresult/fileuploadresult.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/Coordinates/coordinates.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/geolocation.clearWatch.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/geolocation.getCurrentPosition.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/geolocation.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/geolocation.watchPosition.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/parameters/geolocation.options.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/parameters/geolocationError.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/parameters/geolocationSuccess.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/Position/position.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/geolocation/PositionError/positionError.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/capture.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/captureAudio.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/captureAudioOptions.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/CaptureCB.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/CaptureError.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/CaptureErrorCB.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/captureImage.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/captureImageOptions.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/captureVideo.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/captureVideoOptions.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/ConfigurationData.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/MediaFile.getFormatData.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/MediaFile.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/capture/MediaFileData.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.getCurrentPosition.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.getDuration.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.pause.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.play.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.release.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.seekTo.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.startRecord.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.stop.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/media.stopRecord.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/MediaError/mediaError.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/media/Parameters/mediaError.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/notification/notification.alert.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/notification/notification.beep.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/notification/notification.confirm.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/notification/notification.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/phonegap/notification/notification.vibrate.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-cli/index.html$ /docs/$1/latest/reference/cordova-cli/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-battery-status/index.html$ /docs/$1/latest/reference/cordova-plugin-battery-status/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-camera/index.html$ /docs/$1/latest/reference/cordova-plugin-camera/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-console/index.html$ /docs/$1/latest/reference/cordova-plugin-console/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-contacts/index.html$ /docs/$1/latest/reference/cordova-plugin-contacts/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-device/index.html$ /docs/$1/latest/reference/cordova-plugin-device/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-device-motion/index.html$ /docs/$1/latest/reference/cordova-plugin-device-motion/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-device-orientation/index.html$ /docs/$1/latest/reference/cordova-plugin-device-orientation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-dialogs/index.html$ /docs/$1/latest/reference/cordova-plugin-dialogs/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-file/index.html$ /docs/$1/latest/reference/cordova-plugin-file/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-file-transfer/index.html$ /docs/$1/latest/reference/cordova-plugin-file-transfer/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-geolocation/index.html$ /docs/$1/latest/reference/cordova-plugin-geolocation/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-globalization/index.html$ /docs/$1/latest/reference/cordova-plugin-globalization/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-inappbrowser/index.html$ /docs/$1/latest/reference/cordova-plugin-inappbrowser/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-media/index.html$ /docs/$1/latest/reference/cordova-plugin-media/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-media-capture/index.html$ /docs/$1/latest/reference/cordova-plugin-media-capture/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-network-information/index.html$ /docs/$1/latest/reference/cordova-plugin-network-information/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-splashscreen/index.html$ /docs/$1/latest/reference/cordova-plugin-splashscreen/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-vibration/index.html$ /docs/$1/latest/reference/cordova-plugin-vibration/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-statusbar/index.html$ /docs/$1/latest/reference/cordova-plugin-statusbar/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-whitelist/index.html$ /docs/$1/latest/guide/appdev/allowlist/index.html [NE,R=301,L] RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/cordova-plugin-legacy-whitelist/index.html$ /docs/$1/latest/reference/cordova-plugin-legacy-whitelist/index.html [NE,R=301,L] # 301 (PERMANENT): # # old pages -> new pages # RewriteRule ^.*/plugins/authors.html$ /docs/en/latest/guide/hybrid/plugins/index.html#publishing-plugins [NE,R=301,L] # rewrite only: # # /docs/XX/latest/* -> /docs/XX/Y.Y.Y/* # # NOTE: # This does NOT return a redirect. It returns the resource *as if* the # redirected URI was requested. That is, both URIs return the same # resource, but the browser won't change the URI (no redirects followed). # # NOTE: # This needs to be *after* the docs redirects because they might need the # "/latest/" to be in the URI in order to activate. Placing this rule # before them will rewrite "/latest/" to the latest version and redirects # for "/latest/some/path.html" will never activate. RewriteRule ^.*docs/(\w\w(?:-\w\w)?)/latest/(.*)$ /docs/$1/10.x/$2 [L] # Redirect http to https # From Cordova PMC Member raphinesse # https://s.apache.org/An8s # If we receive a forwarded http request from a proxy... RewriteCond %{HTTP:X-Forwarded-Proto} =http [OR] # ...or just a plain old http request directly from the client RewriteCond %{HTTP:X-Forwarded-Proto} ="" RewriteCond %{HTTPS} !=on # Redirect to https version RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]