1
我需要在我的網站上允許像http://example.com/forum
這樣的網址。允許URL沒有任何擴展名與URL重寫,如exemple.com/forum
這裏是我的.htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteBase/
RewriteRule ^([a-z-]+)$ /$1.php [L]
目前,我得到一個404錯誤。
如果我將^([a-z-]+)$ /$1.php [L]
更改爲^([a-z-]+).html$ /$1.php [L]
,並且我的網址http://example.com/forum.html
有效。
我想是計算器,http://stackoverflow.com/questions
編輯:它的工作原理與WAMP在本地主機,但在網站上,它沒有。
什麼是缺失?
它的工作原理!謝謝!! –