{"id":192216,"date":"2024-05-12T12:35:38","date_gmt":"2024-05-12T12:35:38","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/redirect-txt\/"},"modified":"2024-11-27T16:05:24","modified_gmt":"2024-11-27T16:05:24","slug":"redirect-txt","status":"publish","type":"plugin","link":"https:\/\/da.wordpress.org\/plugins\/redirect-txt\/","author":14828394,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"0.2.5","stable_tag":"0.2.5","tested":"6.7.5","requires":"6.2","requires_php":"7.2","requires_plugins":null,"header_name":"Redirect.txt","header_author":"Redirect.txt Team","header_description":"A simple yet powerful redirection plugin. Provide a simple list of URLs and their destinations, and Redirect.txt will take care of the rest.","assets_banners_color":"fdfefe","last_updated":"2024-11-27 16:05:24","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"","header_author_uri":"","rating":0,"author_block_rating":0,"active_installs":0,"downloads":1586,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","changelog"],"tags":{"0.2.0":{"tag":"0.2.0","author":"nko","date":"2024-05-12 12:34:56"},"0.2.1":{"tag":"0.2.1","author":"nko","date":"2024-05-12 12:44:44"},"0.2.2":{"tag":"0.2.2","author":"nko","date":"2024-05-17 12:13:32"},"0.2.3":{"tag":"0.2.3","author":"nko","date":"2024-05-26 13:22:53"},"0.2.4":{"tag":"0.2.4","author":"nko","date":"2024-07-03 19:19:28"},"0.2.5":{"tag":"0.2.5","author":"nko","date":"2024-11-27 16:05:24"}},"upgrade_notice":[],"ratings":[],"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":3085245,"resolution":"128x128","location":"assets","locale":""},"icon-256x256.png":{"filename":"icon-256x256.png","revision":3085245,"resolution":"256x256","location":"assets","locale":""}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":3085245,"resolution":"1544x500","location":"assets","locale":""},"banner-772x250.png":{"filename":"banner-772x250.png","revision":3085245,"resolution":"772x250","location":"assets","locale":""}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["0.2.0","0.2.1","0.2.2","0.2.3","0.2.4","0.2.5"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":3085245,"resolution":"1","location":"assets","locale":""},"screenshot-2.png":{"filename":"screenshot-2.png","revision":3085245,"resolution":"2","location":"assets","locale":""},"screenshot-3.png":{"filename":"screenshot-3.png","revision":3085245,"resolution":"3","location":"assets","locale":""}},"screenshots":{"1":"Redirection rules list","2":"Redirection and 404 logs","3":"Settings"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[932,905,727,925,726],"plugin_category":[],"plugin_contributors":[93452],"plugin_business_model":[],"class_list":["post-192216","plugin","type-plugin","status-publish","hentry","plugin_tags-932","plugin_tags-905","plugin_tags-redirect","plugin_tags-redirection","plugin_tags-redirects","plugin_contributors-nko","plugin_committers-nko","plugin_support_reps-fellan91"],"banners":{"banner":"https:\/\/ps.w.org\/redirect-txt\/assets\/banner-772x250.png?rev=3085245","banner_2x":"https:\/\/ps.w.org\/redirect-txt\/assets\/banner-1544x500.png?rev=3085245","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/redirect-txt\/assets\/icon-128x128.png?rev=3085245","icon_2x":"https:\/\/ps.w.org\/redirect-txt\/assets\/icon-256x256.png?rev=3085245","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/redirect-txt\/assets\/screenshot-1.png?rev=3085245","caption":"Redirection rules list"},{"src":"https:\/\/ps.w.org\/redirect-txt\/assets\/screenshot-2.png?rev=3085245","caption":"Redirection and 404 logs"},{"src":"https:\/\/ps.w.org\/redirect-txt\/assets\/screenshot-3.png?rev=3085245","caption":"Settings"}],"raw_content":"<!--section=description-->\n<p>With Redirect.txt, you can provide a simple list of URLs and their destinations with no post-creation bloat, no limitations, and just a simple editor.<\/p>\n\n<p>There are many good redirect plugins that have been developed for years and have a strong code base. But we don't like the idea of creating separate posts\/entries for each redirection rule. We simply need to add, remove, and manage redirects in a simple and bulk way.<\/p>\n\n<p>.htaccess and nginx configs are OK, but we don't want to edit configs placed somewhere in server directories; we want to open our admin panel and add redirects easily. We also don't care about wrong config configurations, which will stop your server.<\/p>\n\n<h3>Quick Links<\/h3>\n\n<p><a href=\"https:\/\/github.com\/nk-crew\/redirect-txt\">GitHub<\/a><\/p>\n\n<h3>Features<\/h3>\n\n<ul>\n<li>Path redirects<\/li>\n<li>Full URL redirects<\/li>\n<li>Post ID redirects<\/li>\n<li>RegEx redirects<\/li>\n<li>Redirect logs<\/li>\n<li>404 logs<\/li>\n<\/ul>\n\n<h3>Usage<\/h3>\n\n<p>Open <code>Tools \u2192 Redirect.txt<\/code> and provide a list of URLs here. Here is an example of available syntax:<\/p>\n\n<pre><code># The links below will automatically use 301 redirects.\n\/hello: \/new-hello\n\n# Support for custom status\n# To make 301, 302, 303, 307, or 308 redirects, use a code like this:\n308: # All redirections below will use 308 redirect status.\n\n# Support for post ID's\n# Redirect from post with ID 1 to post with ID 8:\n1: 8\n\n# Support for external redirects:\n\/external: https:\/\/google.com\/\n\n# Support for RegEx redirects (automatically detected when the string starts with ^):\n^\/news\/(.*): \/blog\/$1\n\n# You can use as many comments as you want to categorize your links better.\n<\/code><\/pre>\n\n<p>The same rules without comments:<\/p>\n\n<pre><code>\/hello: \/new-hello\n\n308:\n\n1: 8\n\/external: https:\/\/google.com\/\n^\/news\/(.*): \/blog\/$1\n<\/code><\/pre>\n\n<!--section=installation-->\n<h4>Automatic installation<\/h4>\n\n<p>Install the Redirect.txt either via the WordPress plugin directory or by uploading the files to your server at <code>wp-content\/plugins<\/code>.<\/p>\n\n<h4>Usage<\/h4>\n\n<p>To start using the Redirect.txt, just open the Admin Menu \u2192 Tools \u2192 Redirect.txt and follow instructions.<\/p>\n\n<!--section=changelog-->\n<h4>0.2.5 - Nov 28, 2024<\/h4>\n\n<ul>\n<li>added translation file<\/li>\n<li>check compatibility with WordPress 6.7<\/li>\n<\/ul>\n\n<h4>0.2.4 - Jul 3, 2024<\/h4>\n\n<ul>\n<li>added support for redirects to links with hash<\/li>\n<\/ul>\n\n<h4>0.2.3 - May 26, 2024<\/h4>\n\n<ul>\n<li>disable redirects from <code>wp-admin<\/code>, <code>wp-json<\/code> and <code>wp-login.php<\/code> paths<\/li>\n<\/ul>\n\n<h4>0.2.2 - May 17, 2024<\/h4>\n\n<ul>\n<li>changed code editor to light mode by default, to prevent switch to dark when system is in dark mode<\/li>\n<\/ul>\n\n<h4>0.2.1 - May 12, 2024<\/h4>\n\n<ul>\n<li>remove some dev folders from the plugin<\/li>\n<\/ul>\n\n<h4>0.2.0 - May 12, 2024<\/h4>\n\n<ul>\n<li>Release<\/li>\n<\/ul>","raw_excerpt":"Manage 301 &amp; 302 redirects easily. No posts creation bloat, just a simple list.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/192216","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=192216"}],"author":[{"embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/nko"}],"wp:attachment":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=192216"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=192216"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=192216"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=192216"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=192216"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=192216"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}