私のファイル構造は次のようなものです:
application
public_html
.htaccess
index
アプリケーション/設定/config.php
here i have set blank my base_url and index page
.htaccess
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
それでも、index.phpを使用している場合、 httpd.confで仮想ホストを使用しています
<VirtualHost *:80>
ServerAdmin webmaster@dab
DocumentRoot "c:\wamp\www\dab\public_html"
ServerName dab
ServerAlias www.dab
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-acces.log" common
<directory "c:\wamp\www\dab\public_html">
Options FollowSymlinks
AllowOverride None
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</directory>
</VirtualHost>
URLでindex.phpを使用しないための解決策は何ですか
前もって感謝します