0
如果我有一個這樣的URL: http://localhost/sewacp/web/index.php如何在Apache中重寫一個簡單的URL?
我怎樣才能消除/web/index.php因此這將是http://localhost/sewacp
?
我寫的.htaccess這樣的,但它沒有工作:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . web/index.php
它的作品,感謝 –
如果有幫助,你可以接受這個作爲一個答案。 –