如何从pyrocms URL中删除domainname.com/index.php/photos。我试图从$ config ['index_page'] ='index.php';中删除index.php。但它不起作用。任何人都可以帮忙。在安装过程中我有什么需要做的吗?
答案 0 :(得分:1)
你也必须在根文件夹中使用.htaccess文件(如果你使用的是apache或php内置的webserver)。
这是我使用的那个:https://gist.github.com/taiar/2424263
以下是官方文档的参考:https://ellislab.com/codeigniter/user-guide/general/urls.html
答案 1 :(得分:0)
您需要编写.htaccess规则
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]