0
我使用Ubuntu server
。我配置apache2
VirtualHost
像:mod_rewrite不適用於PHP文件
<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
在.htaccess
文件中我寫道:
RewriteEngine on
RewriteRule ^about$ about.php
RewriteRule ^test$ test.html
但作爲一個結果,它的工作原理爲:
domain.com/test
和
domain.com/about
不起作用
那麼我錯過了什麼或爲什麼RewriteRule
不適用於.php
文件?