Hi team,
May i know how to write a rewrite rule for
https://www.example.com/.testing-folder/sample-file.txt Internally it should hit /content/dam/testing-folder/sample-file.txt
I tried below but its not working
RewriteRule ^/.testing-folder/(.*)$ /content/dam/testing-folder/sample-file.txt [PT,L]
解決済! 解決策の投稿を見る。
トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。
表示
返信
いいね!の合計
Hi @shyams67489715
Rules looks fine.
could you please check the url, it seems there is a . before the testing-folder in the rule.
@shyams67489715
Please try below rule
RewriteCond %{REQUEST_URI} ^/.testing-folder
RewriteRule ^/.testing-folder/(.*)$ /content/dam/testing-folder/$1 [PT,L]
Hi @shyams67489715
Rules looks fine.
could you please check the url, it seems there is a . before the testing-folder in the rule.
Below will help to internal redirect:
Regex:
RewriteCond %{HTTP_HOST} https://www.example.com
RewriteRule ^/.testing-folder/(.*) /content/dam/testing-folder/sample-file.txt [PT,L]
OR
Exact match
RewriteCond %{HTTP_HOST} https://www.example.com
RewriteRule ^/.testing-folder/sample-file.txt$
/content/dam/testing-folder/sample-file.txt
The rule looks okay, but id rather do (make sure you escape the DOT)
RewriteRule ^/\.testing-folder/sample-file\.txt$ /content/dam/testing-folder/sample-file.txt [PT,L]
@shyams67489715 Did you find the suggestions from users helpful? Please let us know if more information is required. Otherwise, please mark the answer as correct for posterity. If you have found out solution yourself, please share it with the community.
表示
返信
いいね!の合計