我有网站
site.com/index.php?page=test
(将文件夹中的文件test.php
包含pages
到 index.php 中)
被替换为site.com/test
目标:
如果我去site.com/index.php?page=forum/new_enrty
我想制作网址site.com/forum/new-entry
问题:
如果我打开site.com/forum/new-entry
它会直接将我引导到论坛目录到新条目文件,而不是将新条目包含到 index.php
到目前为止,我得到了这个:
<IfModule mod_rewrite.c>
RewriteEngine on
#RewriteBase /cms/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^ index.php [L]
</IfModule>