我想刪除這兩個文件夾:我的網站的url中的'folder1s'和'folder2',以及php的擴展名,但它不會對我的.htaccess文件生效。.htaccess無法隱藏網址中的文件夾
http://www.example.com/folder1/folder2/are_string_beans_all_right_on_the_candida_diet.php
轉換
http://www.example.com/are-string-beans-all-right-on-the-candida-diet/
這裏是我的.htaccess文件
DirectoryIndex index.php
AddDefaultCharset utf-8
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule^http%1://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php/?$/[L,R=301,NC]
RewriteRule ^((?!folder1/folder2).*)$ folder1/folder2/$1 [NC,L]
嗨,它給500內部服務器錯誤。 – user2689182