Теперь, когда я знаю ответ, вот он: один из них - использовать RewriteRule в httpd.conf. - Седрик 14 секунд назад редактировать
Теперь, когда я знаю ответ, вот он: один из них - использовать RewriteRule в httpd.conf.
RewriteEngine On # Turn on the rewriting engine RewriteRule
RewriteRule ^(.*(\.(html|htm|gif|js|jpg|jpeg|php|css)|\/))$ $1 [L,NC]
# do not do anything (no rewriting), but don't execute the next rule
#("NC", tells Apache that this rule should be case-insensitive, and "L" tells Apache not to process any more rules if this one is used.)
RewriteRule ^.*$ / [NC,R] # rewrite all the other urls to /
Это основная идея. Пожалуйста, измените первое регулярное выражение под свои нужды! (поскольку URL, такие как foo?bar=obu
не будут работать, ни foo/bar
)