Re: index.phpを除くの設定について

2017年6月4日 at 9:57

.htaccess ファイルの設置はされましたか?
http://concrete5-japan.org/help/5-7/using-concrete5-7/dashboard/system-and-maintenance/seo-and-statistics/urls/

Re: index.phpを除くの設定について

2017年6月4日 at 10:13
ありがとうございます。

設置してあります。

中身はこの様になっています。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>