我想讓FuelPHP在我的服務器上工作。我無法使用RewriteRule的.htaccess文件。但是,我的主機允許我指定httpd.conf文件的一部分。帶有Apache目錄和RewriteRule的通配符?
以下作品我想要的東西:
<Directory /Applications/XAMPP/xamppfiles/htdocs/sandbox/username/public>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</Directory>
不過,我需要它比在那裏只是「用戶名」更多的工作。 如何在此目錄中使用通配符,以便它適用於一次性解決方案的任何「用戶名」值?
我在apache manual上發現了此建議,但我不確定如何使它與RewriteRule
一起使用。
試過以下,但它沒有工作:
<Directory /Applications/XAMPP/xamppfiles/htdocs/sandbox/*/public>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</Directory>
請幫幫忙!
你能告訴什麼是錯在這句法。我得到了禁止消息: 別名/ salt「/var/cache/salt/master/minions/.*/files」 選項MultiViews關注鏈接 需要全部授權 –
2016-08-17 20:02:37