我在開發機器上使用Wamp來開發項目。這是我的.htaccess:.htaccess mod_rewrite無法正常工作
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
RewriteBase /project/
這是放在本地主機/工程,使本地主機一樣/項目/某事的任何請求,被路由到本地主機/項目/ index.php文件/東西
然而,他們被路由到本地主機/ index.php /東西
我懷疑它與我如何使用RewriteBase有關。我如何解決它?