.htaccess Htaccess从一个子文件夹重定向到另一个子文件夹

vuv7lop3  于 2022-11-16  发布在  其他
关注(0)|答案(1)|浏览(376)

我希望将作者URL重定向到标准用户配置文件URL
我希望将https://domainname.com/author/{username}重定向到https://domainname.com/user/{username}
这是我目前拥有的,但似乎不起作用

  1. RewriteEngine On
  2. RewriteRule ^/?author/(.*)$ /user/$1 [R,L]

如有任何建议,我们将不胜感激
完整的htaccess内容

  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteRule ^author/(.*)/?$ /user/$1? [NC,R=301,L]
  4. </IfModule>
  5. <IfModule mod_alias.c>
  6. RedirectMatch 403 \,
  7. RedirectMatch 403 \:
  8. RedirectMatch 403 \;
  9. RedirectMatch 403 \=
  10. RedirectMatch 403 \[
  11. RedirectMatch 403 \]
  12. RedirectMatch 403 \^
  13. RedirectMatch 403 \`
  14. RedirectMatch 403 \{
  15. RedirectMatch 403 \}
  16. RedirectMatch 403 \~
  17. RedirectMatch 403 \"
  18. RedirectMatch 403 \$
  19. RedirectMatch 403 \<
  20. RedirectMatch 403 \>
  21. RedirectMatch 403 \|
  22. RedirectMatch 403 \.\.
  23. RedirectMatch 403 \%0
  24. RedirectMatch 403 \%A
  25. RedirectMatch 403 \%B
  26. RedirectMatch 403 \%C
  27. RedirectMatch 403 \%D
  28. RedirectMatch 403 \%E
  29. RedirectMatch 403 \%F
  30. RedirectMatch 403 \%22
  31. RedirectMatch 403 \%27
  32. RedirectMatch 403 \%28
  33. RedirectMatch 403 \%29
  34. RedirectMatch 403 \%3C
  35. RedirectMatch 403 \%3E
  36. RedirectMatch 403 \%3F
  37. RedirectMatch 403 \%5B
  38. RedirectMatch 403 \%5C
  39. RedirectMatch 403 \%5D
  40. RedirectMatch 403 \%7B
  41. RedirectMatch 403 \%7C
  42. RedirectMatch 403 \%7D
  43. # COMMON PATTERNS
  44. Redirectmatch 403 \_vpi
  45. RedirectMatch 403 \.inc
  46. Redirectmatch 403 xAou6
  47. Redirectmatch 403 db\_name
  48. Redirectmatch 403 select\(
  49. Redirectmatch 403 convert\(
  50. Redirectmatch 403 \/query\/
  51. RedirectMatch 403 ImpEvData
  52. Redirectmatch 403 \.XMLHTTP
  53. Redirectmatch 403 proxydeny
  54. RedirectMatch 403 function\.
  55. Redirectmatch 403 remoteFile
  56. Redirectmatch 403 servername
  57. Redirectmatch 403 \&rptmode\=
  58. Redirectmatch 403 sys\_cpanel
  59. RedirectMatch 403 db\_connect
  60. RedirectMatch 403 doeditconfig
  61. RedirectMatch 403 check\_proxy
  62. Redirectmatch 403 system\_user
  63. Redirectmatch 403 \/\(null\)\/
  64. Redirectmatch 403 clientrequest
  65. Redirectmatch 403 option\_value
  66. RedirectMatch 403 ref\.outcontrol
  67. # SPECIFIC EXPLOITS
  68. RedirectMatch 403 errors\.
  69. RedirectMatch 403 config\.
  70. RedirectMatch 403 include\.
  71. RedirectMatch 403 display\.
  72. RedirectMatch 403 register\.
  73. Redirectmatch 403 password\.
  74. RedirectMatch 403 maincore\.
  75. RedirectMatch 403 authorize\.
  76. Redirectmatch 403 macromates\.
  77. RedirectMatch 403 head\_auth\.
  78. RedirectMatch 403 submit\_links\.
  79. RedirectMatch 403 change\_action\.
  80. Redirectmatch 403 com\_facileforms\/
  81. RedirectMatch 403 admin\_db\_utilities\.
  82. RedirectMatch 403 admin\.webring\.docs\.
  83. Redirectmatch 403 Table\/Latest\/index\.
  84. </IfModule>
  85. #AIOWPS_ADVANCED_CHAR_STRING_FILTER_END
  86. #AIOWPS_BLOCK_SPAMBOTS_START
  87. <IfModule mod_rewrite.c>
  88. RewriteEngine On
  89. RewriteCond %{REQUEST_METHOD} POST
  90. RewriteCond %{REQUEST_URI} ^(.*)?wp-comments-post\.php(.*)$
  91. RewriteCond %{HTTP_REFERER} !^http(s)?://domainname\.com [NC,OR]
  92. RewriteCond %{HTTP_USER_AGENT} ^$
  93. RewriteRule .* http://127.0.0.1 [L]
  94. </IfModule>
  95. # BEGIN WordPress
  96. # The directives (lines) between "BEGIN WordPress" and "END WordPress" are
  97. # dynamically generated, and should only be modified via WordPress filters.
  98. # Any changes to the directives between these markers will be overwritten.
  99. <IfModule mod_rewrite.c>
  100. RewriteEngine On
  101. RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  102. RewriteBase /
  103. RewriteRule ^index\.php$ - [L]
  104. RewriteCond %{REQUEST_FILENAME} !-f
  105. RewriteCond %{REQUEST_FILENAME} !-d
  106. RewriteRule . /index.php [L]
  107. </IfModule>
  108. # END WordPress
  109. <ifModule mod_headers.c>
  110. Header set X-Frame-Options DENY
  111. Header set Referrer-Policy: no-referrer-when-downgrade
  112. </ifModule>
  113. <IfModule mod_deflate.c>
  114. SetOutputFilter DEFLATE
  115. <IfModule mod_setenvif.c>
  116. <IfModule mod_headers.c>
  117. SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
  118. RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
  119. </IfModule>
  120. </IfModule>
knpiaxh1

knpiaxh11#

使用显示示例,请尝试以下.htaccess规则文件,确保将.htaccess规则文件与用户文件夹沿着保存
请确保在测试URL之前清除浏览器缓存。

  1. RewriteEngine On
  2. RewriteRule ^author/(.*)/?$ /user/$1? [NC,R=301,L]
  3. RewriteRule ^user/(.+)/?$ index.php?param=$1 [QSA,NC,L]

完整的.htaccess规则文件将是:

  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteRule ^author/(.*)/?$ /user/$1? [NC,R=301,L]
  4. </IfModule>
  5. <IfModule mod_alias.c>
  6. RedirectMatch 403 \,
  7. RedirectMatch 403 \:
  8. RedirectMatch 403 \;
  9. RedirectMatch 403 \=
  10. RedirectMatch 403 \[
  11. RedirectMatch 403 \]
  12. RedirectMatch 403 \^
  13. RedirectMatch 403 \`
  14. RedirectMatch 403 \{
  15. RedirectMatch 403 \}
  16. RedirectMatch 403 \~
  17. RedirectMatch 403 \"
  18. RedirectMatch 403 \$
  19. RedirectMatch 403 \<
  20. RedirectMatch 403 \>
  21. RedirectMatch 403 \|
  22. RedirectMatch 403 \.\.
  23. RedirectMatch 403 \%0
  24. RedirectMatch 403 \%A
  25. RedirectMatch 403 \%B
  26. RedirectMatch 403 \%C
  27. RedirectMatch 403 \%D
  28. RedirectMatch 403 \%E
  29. RedirectMatch 403 \%F
  30. RedirectMatch 403 \%22
  31. RedirectMatch 403 \%27
  32. RedirectMatch 403 \%28
  33. RedirectMatch 403 \%29
  34. RedirectMatch 403 \%3C
  35. RedirectMatch 403 \%3E
  36. RedirectMatch 403 \%3F
  37. RedirectMatch 403 \%5B
  38. RedirectMatch 403 \%5C
  39. RedirectMatch 403 \%5D
  40. RedirectMatch 403 \%7B
  41. RedirectMatch 403 \%7C
  42. RedirectMatch 403 \%7D
  43. # COMMON PATTERNS
  44. Redirectmatch 403 \_vpi
  45. RedirectMatch 403 \.inc
  46. Redirectmatch 403 xAou6
  47. Redirectmatch 403 db\_name
  48. Redirectmatch 403 select\(
  49. Redirectmatch 403 convert\(
  50. Redirectmatch 403 \/query\/
  51. RedirectMatch 403 ImpEvData
  52. Redirectmatch 403 \.XMLHTTP
  53. Redirectmatch 403 proxydeny
  54. RedirectMatch 403 function\.
  55. Redirectmatch 403 remoteFile
  56. Redirectmatch 403 servername
  57. Redirectmatch 403 \&rptmode\=
  58. Redirectmatch 403 sys\_cpanel
  59. RedirectMatch 403 db\_connect
  60. RedirectMatch 403 doeditconfig
  61. RedirectMatch 403 check\_proxy
  62. Redirectmatch 403 system\_user
  63. Redirectmatch 403 \/\(null\)\/
  64. Redirectmatch 403 clientrequest
  65. Redirectmatch 403 option\_value
  66. RedirectMatch 403 ref\.outcontrol
  67. # SPECIFIC EXPLOITS
  68. RedirectMatch 403 errors\.
  69. RedirectMatch 403 config\.
  70. RedirectMatch 403 include\.
  71. RedirectMatch 403 display\.
  72. RedirectMatch 403 register\.
  73. Redirectmatch 403 password\.
  74. RedirectMatch 403 maincore\.
  75. RedirectMatch 403 authorize\.
  76. Redirectmatch 403 macromates\.
  77. RedirectMatch 403 head\_auth\.
  78. RedirectMatch 403 submit\_links\.
  79. RedirectMatch 403 change\_action\.
  80. Redirectmatch 403 com\_facileforms\/
  81. RedirectMatch 403 admin\_db\_utilities\.
  82. RedirectMatch 403 admin\.webring\.docs\.
  83. Redirectmatch 403 Table\/Latest\/index\.
  84. </IfModule>
  85. #AIOWPS_ADVANCED_CHAR_STRING_FILTER_END
  86. #AIOWPS_BLOCK_SPAMBOTS_START
  87. <IfModule mod_rewrite.c>
  88. RewriteEngine On
  89. RewriteCond %{REQUEST_METHOD} POST
  90. RewriteCond %{REQUEST_URI} ^(.*)?wp-comments-post\.php(.*)$
  91. RewriteCond %{HTTP_REFERER} !^http(s)?://domainname\.com [NC,OR]
  92. RewriteCond %{HTTP_USER_AGENT} ^$
  93. RewriteRule .* http://127.0.0.1 [L]
  94. RewriteRule ^author/(.*)/?$ /user/$1? [NC,R=301,L]
  95. RewriteRule ^user/(.+)/?$ index.php?param=$1 [QSA,NC,L]
  96. </IfModule>
  97. # BEGIN WordPress
  98. # The directives (lines) between "BEGIN WordPress" and "END WordPress" are
  99. # dynamically generated, and should only be modified via WordPress filters.
  100. # Any changes to the directives between these markers will be overwritten.
  101. <IfModule mod_rewrite.c>
  102. RewriteEngine On
  103. RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  104. RewriteBase /
  105. RewriteRule ^index\.php$ - [L]
  106. RewriteCond %{REQUEST_FILENAME} !-f
  107. RewriteCond %{REQUEST_FILENAME} !-d
  108. RewriteRule . /index.php [L]
  109. </IfModule>
  110. # END WordPress
  111. <ifModule mod_headers.c>
  112. Header set X-Frame-Options DENY
  113. Header set Referrer-Policy: no-referrer-when-downgrade
  114. </ifModule>
  115. <IfModule mod_deflate.c>
  116. SetOutputFilter DEFLATE
  117. <IfModule mod_setenvif.c>
  118. <IfModule mod_headers.c>
  119. SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
  120. RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
  121. </IfModule>
  122. </IfModule>
展开查看全部

相关问题