Wie Apache index.php automatisch verbirgt
巴扎黑
巴扎黑 2017-05-16 17:00:23
0
1
521

Die .htaccess-Datei ist bereits eingerichtet

<IfModule mod_rewrite.c>
 RewriteEngine on
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.*)$ index.php/ [QSA,PT,L]
</IfModule>

Wenn ich auf index.php/xxx zugreife, wird es nicht wie gewohnt zu einer Adresse. Wenn ich index.php/xxx möchte, springt es automatisch zu /xxx.

巴扎黑
巴扎黑

Antworte allen(1)
世界只因有你

RewriteBase /index.php所在的DocumentRoot,把.htaccess放在这里

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?$1 [QSA,PT,L]

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!