How do I turn "www.example.com/test.html" to "www.example.com/test" ? (.htaccess)

WaWalex

I have wrote an .htaccess file:

RewriteEngine On
RewriteRule ^test test.html [NC,L]

But I don't get why if I go (for example) to "example.com/testabc" it leads me to test.html anyway. How do I turn this off? I know it's a simple thing but I can't find the solutions...

Quentin

Look at your expression:

^test

https://regex101.com/ will translate it into English:

^ asserts position at start of a line
test matches the characters test literally (case sensitive)

So you have a "starts with" but no "ends with"

^test$

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How do I turn off all the password prompts?

분류에서Dev

How do I turn on sticky keys from the CLI?

분류에서Dev

How do I turn on nanosecond precision when capturing live traffic?

분류에서Dev

How do I turn on advanced telemetry in an AIR app?

분류에서Dev

How do I turn off bullet list formatting all of the lines to bullet lists in Word 2013?

분류에서Dev

How do I turn off the annoying clicking sound when browsing web pages in Internet Explorer?

분류에서Dev

How do I turn on the Volume system icon without uninstalling my audio driver?

분류에서Dev

My Toshiba Satellite C55-B5319 fans will not turn on; how do I make them work?

분류에서Dev

How do I turn off the little CTRL-SHIFT bubble that pops up on Windows 7 around my cursor?

분류에서Dev

How do you confirm if .htaccess if working fine?

분류에서Dev

How do you turn lists with multiple characters into strings?

분류에서Dev

How can I turn a delimited string into a nested hashtable in PowerShell?

분류에서Dev

How do I then() on a promise?

분류에서Dev

How do regular expressions work in htaccess to redirect an IP range

분류에서Dev

How can I rewrite everything but my first rule in htaccess?

분류에서Dev

How can I use the get() function to turn the answer in the entry() box into a string

분류에서Dev

How can I get the Quill editor authorship module to turn highlighting on and off?

분류에서Dev

How can I turn on File and Printer sharing, and the Firewall from the Windows command line

분류에서Dev

How do I do a SIP telephone call

분류에서Dev

How do I do collapsed="false" in this code

분류에서Dev

How do I install Tox?

분류에서Dev

How do I install Mir?

분류에서Dev

How do I login as root?

분류에서Dev

How do I copy DVDs

분류에서Dev

How do I use MapStateListener?

분류에서Dev

How do I disable Cython?

분류에서Dev

How do I access these JSONObjects?

분류에서Dev

How do I troubleshoot this error?

분류에서Dev

How do I apply a patch?

Related 관련 기사

  1. 1

    How do I turn off all the password prompts?

  2. 2

    How do I turn on sticky keys from the CLI?

  3. 3

    How do I turn on nanosecond precision when capturing live traffic?

  4. 4

    How do I turn on advanced telemetry in an AIR app?

  5. 5

    How do I turn off bullet list formatting all of the lines to bullet lists in Word 2013?

  6. 6

    How do I turn off the annoying clicking sound when browsing web pages in Internet Explorer?

  7. 7

    How do I turn on the Volume system icon without uninstalling my audio driver?

  8. 8

    My Toshiba Satellite C55-B5319 fans will not turn on; how do I make them work?

  9. 9

    How do I turn off the little CTRL-SHIFT bubble that pops up on Windows 7 around my cursor?

  10. 10

    How do you confirm if .htaccess if working fine?

  11. 11

    How do you turn lists with multiple characters into strings?

  12. 12

    How can I turn a delimited string into a nested hashtable in PowerShell?

  13. 13

    How do I then() on a promise?

  14. 14

    How do regular expressions work in htaccess to redirect an IP range

  15. 15

    How can I rewrite everything but my first rule in htaccess?

  16. 16

    How can I use the get() function to turn the answer in the entry() box into a string

  17. 17

    How can I get the Quill editor authorship module to turn highlighting on and off?

  18. 18

    How can I turn on File and Printer sharing, and the Firewall from the Windows command line

  19. 19

    How do I do a SIP telephone call

  20. 20

    How do I do collapsed="false" in this code

  21. 21

    How do I install Tox?

  22. 22

    How do I install Mir?

  23. 23

    How do I login as root?

  24. 24

    How do I copy DVDs

  25. 25

    How do I use MapStateListener?

  26. 26

    How do I disable Cython?

  27. 27

    How do I access these JSONObjects?

  28. 28

    How do I troubleshoot this error?

  29. 29

    How do I apply a patch?

뜨겁다태그

보관