假設我有一個頁面testpage.php,我想通過localhost/testpage訪問它。我無法弄清楚正則表達式來實現它。PHP正則表達式.htaccess
當我使用下面,我得到了一個服務器錯誤
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* "^[^0-9][A-z0-9_]+*.php"/$0
然而,當我指定它工作的確切文件。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* testpage.php/$0
已解決,謝謝! – user1104854 2013-03-25 13:24:31