|
我使用 site_url 生成访问路径
但是我去除index.php访问,添加.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
之后 生成的路径依然 存在 index.php
请问在这个问题请大家 帮忙想想是什么问题。因为我不想更改源码 所以在这里请教各位大神?
|
|